18 lines
341 B
SCSS
18 lines
341 B
SCSS
@use '@angular/material' as mat;
|
|
|
|
html {
|
|
height: 100%;
|
|
color-scheme: light dark;
|
|
|
|
@include mat.theme((color: mat.$violet-palette,
|
|
typography: Roboto,
|
|
density: 0));
|
|
|
|
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 5%;
|
|
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
}
|
|
} |