fix icons background

This commit is contained in:
Dan Percic 2021-08-13 21:45:35 +03:00
parent 360ef9bd6c
commit 89376a6554
2 changed files with 5 additions and 2 deletions

View File

@ -67,6 +67,10 @@ iqser-circle-button {
background: rgba($primary, 0.1);
}
&:not(.overlay):hover {
background-color: $btn-bg;
}
&.primary {
font-weight: 500 !important;
background-color: $primary;

View File

@ -8,8 +8,7 @@ export interface FilterGroup {
readonly icon?: string;
readonly filterTemplate?: TemplateRef<any>;
readonly hide?: boolean;
readonly checker: Function;
readonly checker?: Function;
readonly matchAll?: boolean;
readonly checkerArgs?: any[];
}