added fieldset around checkboxes

This commit is contained in:
Aayush Rohila
2023-01-27 12:52:35 +05:30
parent 4a3bc568ad
commit 5053c505b1
2 changed files with 15 additions and 8 deletions

View File

@@ -1,4 +1,5 @@
<div class="checklist">
<fieldset>
<mat-checkbox
*ngFor="let option of options"
[checked]="option.checked"
@@ -12,8 +13,8 @@
class="facet-name">
{{ option.name | translate }}
</div>
</mat-checkbox>
</fieldset>
</div>
<div class="adf-facet-buttons" *ngIf="options.fitsPage && !settings?.hideDefaultAction">

View File

@@ -24,3 +24,9 @@
}
}
}
fieldset {
border: 0 none;
}