From faa6e357989ea71b6e498bd1a03ee2461e8fd8a2 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Mon, 4 Aug 2025 19:49:49 +0200 Subject: [PATCH] Feature/restore border color in tables (#5315) * Restore border color --- apps/client/src/styles/theme.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/apps/client/src/styles/theme.scss b/apps/client/src/styles/theme.scss index 9add22d6a..385e102dd 100644 --- a/apps/client/src/styles/theme.scss +++ b/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.table-overrides( + ( + row-item-outline-color: rgba(var(--dark-dividers)) + ) + ); + --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.table-overrides( + ( + row-item-outline-color: rgba(var(--light-dividers)) + ) + ); + --mdc-outlined-card-container-color: unset; }