diff --git a/CHANGELOG.md b/CHANGELOG.md index 98cc84059..ef017ba04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Decreased the density of the `@angular/material` tables - Improved the breadcrumb navigation style in the blog post pages for mobile - Improved the style of the _Changelog & License_ button on the about page - Upgraded `ionicons` from version `6.1.2` to `7.1.0` @@ -271,7 +272,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Changed the slide toggles to checkboxes on the account page - Changed the slide toggles to checkboxes in the admin control panel -- Decreased the density of the theme +- Increased the density of the theme - Migrated the style of various components to `@angular/material` `15` (mdc) - Upgraded `@angular/cdk` and `@angular/material` from version `15.2.5` to `15.2.6` - Upgraded `bull` from version `4.10.2` to `4.10.4` 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 {