mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
322 B
28 lines
322 B
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 0 through 25 {
|
|
.radius-#{$i} {
|
|
border-radius: #{$i}px;
|
|
}
|
|
}
|