31 lines
537 B
SCSS
31 lines
537 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
overflow: -moz-scrollbars-vertical;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
font-family: Poppins, Roboto, "Open Sans", ui-sans-serif, system-ui,
|
|
sans-serif;
|
|
font-size: 1rem;
|
|
background-color: #fff;
|
|
color: #000;
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
min-width: 100%;
|
|
overflow-x: hidden;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
#app {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|