Skip to content

Commit f1d35a1

Browse files
authored
Fix styling. (#113)
* Fix styling. Fixed by Gemini when importing to run in Google environment. * fix(shell): use all-component-colors for light theme Address PR #113 review comment by replacing all-component-themes with all-component-colors under :root and .light-theme to prevent duplicating base structural styles already included at top level.
1 parent 67de0c2 commit f1d35a1

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

shell/src/global_styles.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@ $dark-theme: mat.define-theme(
3737
)
3838
);
3939

40-
@include mat.all-component-themes($light-theme);
40+
@include mat.all-component-bases($light-theme);
4141

42-
:root {
42+
:root,
43+
.light-theme {
44+
@include mat.all-component-colors($light-theme);
4345
@include mat.theme-overrides(
4446
(
4547
primary: #3f51b5,

0 commit comments

Comments
 (0)