(ui/page-layouts) Fixed: Toggle button selected background is not visible

This commit is contained in:
Sercan Yemen 2022-05-15 15:28:28 +03:00
parent 9521257b4d
commit 9b44793b64

View File

@ -36,7 +36,7 @@ export interface PageLayoutsOverviewData
<mat-button-toggle
*ngFor="let option of overview.availableOptions"
class="m-2 font-medium bg-transparent"
[ngClass]="{'bg-gray-200 dark:bg-gray-700': option.value === overview.selectedOption}"
[ngClass]="{'bg-gray-300 dark:bg-gray-700': option.value === overview.selectedOption}"
[value]="option.value">
{{option.title}}
</mat-button-toggle>