Skip to content

Commit

Permalink
Updating spacing of sector drop down
Browse files Browse the repository at this point in the history
Updated the spacing of the sector drop down
see #303
  • Loading branch information
Joel committed Sep 20, 2023
1 parent f260079 commit 8b79f7f
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions frontend/src/app/ranking/ranking.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,19 @@ <h1>
<mat-option
*ngFor="let sectorObj of sectorFilters"
[value]="sectorObj.sector"
><span>{{ sectorObj.sector | toNiceName }}</span>
<span style="float: right">{{ sectorObj.count }}</span></mat-option
>
<div
style="
width: 136px;
display: flex;
align-items: center;
justify-content: space-between;
"
>
<span>{{ sectorObj.sector | toNiceName }}</span>
<span>{{ sectorObj.count }}</span>
</div>
</mat-option>
</mat-select>
</mat-form-field>
<mat-checkbox
Expand Down

0 comments on commit 8b79f7f

Please sign in to comment.