obscreen/data/www/scss/base/_html.scss
2024-06-21 13:56:19 +02:00

30 lines
524 B
SCSS

* {
font-family: 'Roboto', 'Arial', 'sans-serif';
}
html {
height: 100vh;
margin: 0;
padding: 0;
display: flex;
background-color: $blueDark;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
align-self: stretch;
}
body {
margin: 0;
padding: 0;
flex: 1;
background-color: $blueDark;
color: $white;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
align-self: stretch;
}