Browse Source

feat(ui): add button overrides for accent and warn colors

pull/5374/head
KenTandrian 7 days ago
parent
commit
46564da712
  1. 17
      apps/client/src/styles/theme.scss

17
apps/client/src/styles/theme.scss

@ -254,6 +254,23 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest);
)
);
.mat-accent {
@include mat.button-overrides(
(
filled-container-color: var(--gf-theme-secondary-500)
)
);
}
.mat-warn {
@include mat.button-overrides(
(
filled-container-color: #f44336,
filled-label-text-color: white
)
);
}
.page.has-tabs {
@include mat.tabs-overrides(
(

Loading…
Cancel
Save