31 lines
447 B
SCSS
31 lines
447 B
SCSS
@import "../utils/variables";
|
|
|
|
.content {
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
flex: 1 auto;
|
|
padding: 20px;
|
|
|
|
@media only screen and (min-width: $breakLarge) {
|
|
display: flex;
|
|
width: $width;
|
|
}
|
|
}
|
|
|
|
.vertical {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.flexWrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.main {
|
|
width: 100%;
|
|
height: 100%;
|
|
} |