Browse Source
Feature/restore border color in tables (#5315)
* Restore border color
pull/5322/head
Thomas Kaul
3 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
12 additions and
0 deletions
-
apps/client/src/styles/theme.scss
|
@ -158,6 +158,12 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest); |
|
|
|
|
|
|
|
|
@include mat.all-component-themes($gf-theme-default); |
|
|
@include mat.all-component-themes($gf-theme-default); |
|
|
|
|
|
|
|
|
|
|
|
@include mat.table-overrides( |
|
|
|
|
|
( |
|
|
|
|
|
row-item-outline-color: rgba(var(--dark-dividers)) |
|
|
|
|
|
) |
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
--mdc-outlined-card-container-color: unset; |
|
|
--mdc-outlined-card-container-color: unset; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -178,6 +184,12 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest); |
|
|
|
|
|
|
|
|
@include mat.all-component-themes($gf-theme-dark); |
|
|
@include mat.all-component-themes($gf-theme-dark); |
|
|
|
|
|
|
|
|
|
|
|
@include mat.table-overrides( |
|
|
|
|
|
( |
|
|
|
|
|
row-item-outline-color: rgba(var(--light-dividers)) |
|
|
|
|
|
) |
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
--mdc-outlined-card-container-color: unset; |
|
|
--mdc-outlined-card-container-color: unset; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|