23 lines
335 B
SCSS
23 lines
335 B
SCSS
@import "./variables.scss";
|
|
|
|
.contentWrapper {
|
|
display: inline-block;
|
|
overflow: auto;
|
|
box-sizing: border-box;
|
|
padding: 20px;
|
|
a {
|
|
color: $blue;
|
|
}
|
|
width: 100%;
|
|
@media (min-width: $break-large) {
|
|
width: 960px;
|
|
}
|
|
min-height: 100vh;
|
|
height: 100vh;
|
|
}
|
|
|
|
.content {
|
|
box-sizing: border-box;
|
|
text-align: left;
|
|
}
|