Browse Source

fix(client): move tabs overrides outside of media query

pull/6839/head
KenTandrian 3 weeks ago
parent
commit
6a3f1e6387
  1. 12
      apps/client/src/styles.scss

12
apps/client/src/styles.scss

@ -520,15 +520,15 @@ ngx-skeleton-loader {
padding: 2rem 0; padding: 2rem 0;
} }
@include mat.tabs-overrides(
(
divider-height: 0
)
);
@media (min-width: 576px) { @media (min-width: 576px) {
flex-direction: row-reverse; flex-direction: row-reverse;
@include mat.tabs-overrides(
(
divider-height: 0
)
);
.mat-mdc-tab-header { .mat-mdc-tab-header {
background-color: rgba(var(--palette-foreground-base), 0.02); background-color: rgba(var(--palette-foreground-base), 0.02);
padding: 2rem 0; padding: 2rem 0;

Loading…
Cancel
Save