From 9e6a5b8716d161734eeabf15980b99329fd6e55c Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 3 Aug 2025 10:32:07 +0200 Subject: [PATCH] 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; }