AAE-40269 Add storybook v10 (#11401)

This commit is contained in:
Wojciech Duda
2026-01-09 18:17:43 +00:00
committed by GitHub
parent f0c6cc0ff7
commit 5f9de1fde8
119 changed files with 11010 additions and 753 deletions
+30
View File
@@ -0,0 +1,30 @@
@use '@angular/material' as mat;
@use 'material-icons/iconfont/material-icons.css' as *;
html {
color-scheme: light dark;
$font-family: 'Nunito Sans', sans-serif;
font-family: $font-family;
@include mat.theme(
(
color: mat.$yellow-palette,
typography: $font-family,
density: 0
)
);
&.adf-storybook-light-theme {
color-scheme: light;
}
&.adf-storybook-dark-theme {
color-scheme: dark;
}
body {
background: var(--mat-sys-surface);
color: var(--mat-sys-on-surface);
}
}