Browse Source
Task/decrease horizontal padding of buttons (#6679)
Decrease horizontal padding of buttons
next
Thomas Kaul
5 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
4 additions and
1 deletions
-
apps/client/src/styles/theme.scss
|
|
@ -313,7 +313,10 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest); |
|
|
|
|
|
|
|
|
@include mat.button-overrides( |
|
|
@include mat.button-overrides( |
|
|
( |
|
|
( |
|
|
filled-container-color: var(--gf-theme-primary-500) |
|
|
filled-container-color: var(--gf-theme-primary-500), |
|
|
|
|
|
filled-horizontal-padding: 1rem, |
|
|
|
|
|
outlined-horizontal-padding: 1rem, |
|
|
|
|
|
text-horizontal-padding: 1rem |
|
|
) |
|
|
) |
|
|
); |
|
|
); |
|
|
|
|
|
|
|
|
|