EMS/src/styles.scss

23 lines
319 B
SCSS
Raw Normal View History

2024-12-18 13:54:40 +01:00
@use '@angular/material' as mat;
html {
color-scheme: light dark;
@include mat.theme((
color: mat.$azure-palette,
typography: Roboto,
density: 0
));
}
2024-12-18 11:59:52 +01:00
html, body {
height: 100%;
}
body {
margin: 0;
2024-12-18 13:54:40 +01:00
background: var(--mat-sys-surface);
color: var(--mat-sys-on-surface);
2024-12-18 11:59:52 +01:00
}