Browse Source

fix(ui): isolate overrides to nav only

pull/5341/head
KenTandrian 2 weeks ago
parent
commit
b985f7d1ee
  1. 11
      apps/client/src/styles/theme.scss

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

@ -230,14 +230,21 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest);
(
active-focus-label-text-color: var(--gf-theme-primary-500),
active-hover-label-text-color: var(--gf-theme-primary-500),
active-indicator-height: 0,
active-label-text-color: var(--gf-theme-primary-500),
active-ripple-color: var(--gf-theme-primary-500),
inactive-ripple-color: var(--gf-theme-primary-500)
)
);
.page.has-tabs {
@include mat.tabs-overrides(
(
active-indicator-height: 0,
container-height: 2rem,
inactive-ripple-color: var(--gf-theme-primary-500),
label-text-tracking: normal
)
);
}
}
:root {

Loading…
Cancel
Save