21 lines
240 B
SCSS
Raw Normal View History

2017-04-02 19:56:47 -04:00
html {
box-sizing: border-box;
height: 100%;
2017-04-02 19:56:47 -04:00
}
*, *:before, *:after {
box-sizing: inherit;
}
[v-cloak], .is-hidden {
display: none;
}
#root {
position: relative;
min-height: 100%;
&.is-fullscreen {
height: 100vh;
}
}