From 80e899a5d3c239ee1d56a14786200dd57d1d1e33 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 19 Dec 2023 19:54:20 +0100 Subject: [PATCH] Bugfix/reset letter spacing in buttons (#2762) * Reset letter spacing * Update changelog --- CHANGELOG.md | 4 ++++ apps/client/src/styles/theme.scss | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7278248a..ce682cec9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Set the select column of the lazy-loaded activities table to stick at the end (experimental) - Improved the performance of the value redaction interceptor for the impersonation mode by eliminating `cloneDeep` +### Fixed + +- Reset the letter spacing in buttons + ## 2.31.0 - 2023-12-16 ### Changed diff --git a/apps/client/src/styles/theme.scss b/apps/client/src/styles/theme.scss index 5dcbb10ff..8114402d5 100644 --- a/apps/client/src/styles/theme.scss +++ b/apps/client/src/styles/theme.scss @@ -111,5 +111,7 @@ $gf-theme-dark: mat.define-dark-theme( --gf-theme-secondary-500: #3686cf; --gf-theme-secondary-500-rgb: 78, 208, 94; - --mdc-typography-button-letter-spacing: normal; + --mdc-filled-button-label-text-tracking: normal; + --mdc-outlined-button-label-text-tracking: normal; + --mdc-text-button-label-text-tracking: normal; }