From 4228f93ff359c5ddcb115a79e6e226de6a09b25b Mon Sep 17 00:00:00 2001 From: Thomas <4159106+dtslvr@users.noreply.github.com> Date: Wed, 24 May 2023 08:44:37 +0200 Subject: [PATCH] Decrease table density --- apps/client/src/styles/theme.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/client/src/styles/theme.scss b/apps/client/src/styles/theme.scss index 118d53336..5dcbb10ff 100644 --- a/apps/client/src/styles/theme.scss +++ b/apps/client/src/styles/theme.scss @@ -86,6 +86,7 @@ $gf-theme-default: mat.define-light-theme( ); @include mat.all-component-themes($gf-theme-default); @include mat.button-density(0); +@include mat.table-density(-1); // Create dark theme $gf-theme-dark: mat.define-dark-theme( @@ -101,6 +102,7 @@ $gf-theme-dark: mat.define-dark-theme( .is-dark-theme { @include mat.all-component-colors($gf-theme-dark); @include mat.button-density(0); + @include mat.table-density(-1); } :root {