25 lines
293 B
SCSS
25 lines
293 B
SCSS
html, body {
|
|
height: 100%;
|
|
background-color: #f7f7f7;
|
|
}
|
|
|
|
.is-fullheight {
|
|
height: 100%;
|
|
}
|
|
|
|
.has-margin-top-normal {
|
|
margin-top: $size-normal;
|
|
}
|
|
|
|
.has-padding-small {
|
|
padding: 1rem;
|
|
}
|
|
|
|
#app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.mr-1 {
|
|
margin-right: 5px;
|
|
} |