51 lines
623 B
SCSS
51 lines
623 B
SCSS
|
|
|
|
body, html
|
|
{
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 16px;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
html
|
|
{
|
|
height: 100vh;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
body
|
|
{
|
|
height: 100vh;
|
|
background: var(--color-bg);
|
|
color: var(--color-fg);
|
|
font-size: 16px;
|
|
@extend %font;
|
|
}
|
|
|
|
.clear
|
|
{
|
|
display: block;
|
|
clear: both;
|
|
float: none;
|
|
}
|
|
|
|
.app
|
|
{
|
|
height: 100vh;
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
justify-content: stretch;
|
|
}
|
|
|
|
.fade-enter-active, .fade-leave-active
|
|
{
|
|
transition: opacity .5s;
|
|
}
|
|
|
|
.fade-enter, .fade-leave-to
|
|
{
|
|
opacity: 0;
|
|
} |