Active style for progress bar filters

This commit is contained in:
Adina Țeudan 2022-06-24 00:19:49 +03:00
parent d98b837b6a
commit f9e2488338
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
<div (click)="selectValue()" [class.pointer]="filterKey && !!filterService">
<div [class.active]="filterChecked$ | async" class="details mb-6">
<div (click)="selectValue()" [class.active]="filterChecked$ | async" [class.pointer]="filterKey && !!filterService">
<div class="details mb-6">
<span>{{ config.count }} {{ config.label | translate }}</span>
<mat-icon [svgIcon]="config.icon"></mat-icon>
</div>

View File

@ -27,6 +27,6 @@
}
}
.active {
font-weight: 600;
.active .indicator {
background-color: rgba(var(--iqser-primary-rgb), 0.4);
}