Browse Source

fix(ui): container height overrides

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

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

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

Loading…
Cancel
Save