AAE-31712 Custom theme fix after ng17 update (#10661)

* AAE-31712 Fix custom theme after Angular17 update

* update
This commit is contained in:
Bartosz Sekula
2025-02-18 13:58:29 +01:00
committed by GitHub
parent ca4dcf85f4
commit 3c7e8e84ff
3 changed files with 9 additions and 8 deletions

View File

@@ -1,5 +1,4 @@
@use 'sass:map';
@import '@angular/material/theming';
@import './theme-configuration';
@import './typography';
@import './custom-theme-palettes';
@@ -14,9 +13,6 @@ $text-color: map.get($theme-config, 'textColor');
$base-font-size: map.get($theme-config, 'baseFontSize');
$font-family: map.get($theme-config, 'fontFamily');
$app-typography: get-mat-typography(
$base-font-size,
$font-family
);
$app-typography: get-mat-typography($base-font-size, $font-family);
$palettes: get-mat-palettes($primary-color, $accent-color);