2017-04-02 19:56:47 -04:00
|
|
|
html {
|
|
|
|
box-sizing: border-box;
|
2017-04-22 19:46:20 -04:00
|
|
|
height: 100%;
|
2017-04-02 19:56:47 -04:00
|
|
|
}
|
|
|
|
*, *:before, *:after {
|
|
|
|
box-sizing: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
[v-cloak], .is-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-08-11 18:16:56 -04:00
|
|
|
#root {
|
2017-04-22 19:46:20 -04:00
|
|
|
position: relative;
|
|
|
|
min-height: 100%;
|
2017-09-24 23:22:33 -04:00
|
|
|
|
|
|
|
&.is-fullscreen {
|
|
|
|
height: 100vh;
|
|
|
|
}
|
2017-04-22 19:46:20 -04:00
|
|
|
}
|
2018-10-08 00:17:31 -04:00
|
|
|
|
|
|
|
|
|
|
|
@for $i from 1 through 25 {
|
|
|
|
.radius-#{$i} {
|
|
|
|
border-radius: #{$i}px;
|
|
|
|
}
|
|
|
|
}
|