Skip to content

Commit

Permalink
WIP left column is improved
Browse files Browse the repository at this point in the history
  • Loading branch information
artisticlight committed Aug 21, 2024
1 parent 6ec6dc2 commit f991dcc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
@for (point of pointHistory; track $index) {
<mat-radio-button color="primary" (click)="onPointClick($index)">
<mat-icon class="ts-wkt-icon">place</mat-icon>
{{point.flatCoordinates[0] | floatPrecision: 2}},&ensp;{{point.flatCoordinates[1] | floatPrecision: 2}}
<span class="ts-wkt-text">
{{point.flatCoordinates[0] | floatPrecision: 2}},&ensp;{{point.flatCoordinates[1] | floatPrecision: 2}}
</span>
</mat-radio-button>
}
</mat-radio-group>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -284,3 +284,7 @@ label {
color: darken(themed('dark-primary-text'), 25%);
}
}

.ts-wkt-text {
vertical-align: super;
}

0 comments on commit f991dcc

Please sign in to comment.