Browse Source

feat(styles): add fab overrides for container color

pull/5322/head
KenTandrian 3 weeks ago
parent
commit
18adac464d
  1. 10
      apps/client/src/styles/theme.scss

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

@ -158,6 +158,11 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest);
@include mat.all-component-themes($gf-theme-default); @include mat.all-component-themes($gf-theme-default);
@include mat.fab-overrides(
(
container-color: var(--gf-theme-primary-500)
)
);
@include mat.table-overrides( @include mat.table-overrides(
( (
row-item-outline-color: rgba(var(--dark-dividers)) row-item-outline-color: rgba(var(--dark-dividers))
@ -184,6 +189,11 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest);
@include mat.all-component-themes($gf-theme-dark); @include mat.all-component-themes($gf-theme-dark);
@include mat.fab-overrides(
(
container-color: var(--gf-theme-primary-500)
)
);
@include mat.table-overrides( @include mat.table-overrides(
( (
row-item-outline-color: rgba(var(--light-dividers)) row-item-outline-color: rgba(var(--light-dividers))

Loading…
Cancel
Save