21 lines
240 B
SCSS
21 lines
240 B
SCSS
html {
|
|
box-sizing: border-box;
|
|
height: 100%;
|
|
}
|
|
*, *:before, *:after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
[v-cloak], .is-hidden {
|
|
display: none;
|
|
}
|
|
|
|
#root {
|
|
position: relative;
|
|
min-height: 100%;
|
|
|
|
&.is-fullscreen {
|
|
height: 100vh;
|
|
}
|
|
}
|