Browse Source

Task/restore button states in confirmation dialog (#5374)

* Restore button states in confirmation dialog
feature/migrate-from-angular-material-design-2-to-3
Kenrick Tandrian 2 days ago
committed by GitHub
parent
commit
e304a80d62
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  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