mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:28 -06:00
28 lines
322 B
SCSS
28 lines
322 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;
|
|
}
|
|
}
|
|
|
|
|
|
@for $i from 1 through 25 {
|
|
.radius-#{$i} {
|
|
border-radius: #{$i}px;
|
|
}
|
|
}
|