Skip to content

Commit

Permalink
style(geo): fix search setting list style regression (#1476)
Browse files Browse the repository at this point in the history
* style(geo): fix search setting list style regression
  • Loading branch information
aziz-access authored Oct 30, 2023
1 parent 6673979 commit a68db40
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,12 @@
}}
</button>
</div>
<div mat-menu-item>
<div
class="igo-search-settings-sub-menu"
mat-menu-item
*ngFor="let settingValue of getAvailableValues(setting)"
>
<mat-checkbox
*ngFor="let settingValue of getAvailableValues(setting)"
[style.display]="displayBlock"
[checked]="settingValue.enabled"
[value]="setting"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
.igo-search-settings-radio-group {
display: flex;
flex-direction: column;
padding-right: 16px;
}

.igo-search-settings-checkbox mat-radio-button {
Expand Down Expand Up @@ -48,3 +49,7 @@
.igo-search-settings-button {
@include common-utils.square-button();
}

.igo-search-settings-sub-menu {
min-height: 34px;
}

0 comments on commit a68db40

Please sign in to comment.