26 lines
391 B
SCSS
26 lines
391 B
SCSS
.clearfix::after {
|
|
clear: both;
|
|
content: '';
|
|
display: table;
|
|
}
|
|
|
|
.container {
|
|
max-width: 100%; /* 1 */
|
|
margin-left: auto; /* 2 */
|
|
margin-right: auto; /* 2 */
|
|
width: 100%; /* 1 */
|
|
min-height: 100vh;
|
|
position: relative;
|
|
@include themify($themes) {
|
|
background-color: themed('body-background-color');
|
|
}
|
|
}
|
|
|
|
.hide {
|
|
display: none;
|
|
}
|
|
|
|
.grow {
|
|
@include flex-grow(1);
|
|
}
|