17 lines
191 B
SCSS
17 lines
191 B
SCSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
|
|
body{
|
|
color: var(--text);
|
|
}
|
|
|
|
#app{
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: var(--background);
|
|
} |