24 lines
345 B
SCSS
24 lines
345 B
SCSS
// ===================
|
|
// © AngelaMos | 2026
|
|
// styles.scss
|
|
// ===================
|
|
|
|
@forward 'styles/tokens';
|
|
@forward 'styles/fonts';
|
|
@forward 'styles/mixins';
|
|
|
|
@use 'styles/reset';
|
|
|
|
#root {
|
|
min-height: 100vh;
|
|
min-height: 100dvh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.app {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|