Browse Source

fix(ui): reduce radius only for mobile

pull/5341/head
KenTandrian 2 weeks ago
parent
commit
9074c4f2e8
  1. 8
      apps/client/src/styles/theme.scss

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

@ -206,6 +206,12 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest);
.theme-dark, .theme-dark,
.theme-light { .theme-light {
@media (max-width: 575.98px) { @media (max-width: 575.98px) {
@include mat.dialog-overrides(
(
container-shape: 4px
)
);
@include mat.tabs-overrides( @include mat.tabs-overrides(
( (
container-height: 3rem container-height: 3rem
@ -216,7 +222,6 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest);
@include mat.dialog-overrides( @include mat.dialog-overrides(
( (
container-max-width: 80vw, container-max-width: 80vw,
container-shape: 4px,
container-small-max-width: 96vw container-small-max-width: 96vw
) )
); );
@ -226,6 +231,7 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest);
container-color: var(--gf-theme-primary-500) container-color: var(--gf-theme-primary-500)
) )
); );
@include mat.tabs-overrides( @include mat.tabs-overrides(
( (
active-focus-label-text-color: var(--gf-theme-primary-500), active-focus-label-text-color: var(--gf-theme-primary-500),

Loading…
Cancel
Save