StaticApps/src/theme/_base.scss

45 lines
610 B
SCSS

* {
box-sizing: border-box;
}
*:focus {
outline: none;
}
html, body {
margin: 0;
padding: 0;
background-color: $bg;
color: #fff;
font-size: 16px;
font-family: 'Inter', sans-serif;;
}
.hideAll {
display: none !important;
}
.icon {
width: 1em;
height: 1em;
vertical-align: middle;
font-size: 1em;
shape-rendering: geometricPrecision;
transition: transform .5s cubic-bezier(.22, .61, .36, 1);
stroke-width: 5px;
text-align: center;
margin-right: .5rem;
&.block {
display: block;
}
}
v-content {
display: block;
}
v-collapse-content .inner {
padding: 1rem;
}