Browse Source

fix(ui): container height overrides

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

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

@ -212,12 +212,24 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest);
)
);
.page.has-tabs {
@include mat.tabs-overrides(
(
container-height: 3rem
)
);
}
}
@media (min-width: 576px) {
.page.has-tabs {
@include mat.tabs-overrides(
(
container-height: 2rem
)
);
}
}
@include mat.dialog-overrides(
(
@ -246,7 +258,6 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest);
@include mat.tabs-overrides(
(
active-indicator-height: 0,
container-height: 2rem,
label-text-tracking: normal
)
);

Loading…
Cancel
Save