27 lines
No EOL
582 B
SCSS
27 lines
No EOL
582 B
SCSS
.page-layout {
|
|
flex: 1 0 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
.content {
|
|
flex: 1 0 auto;
|
|
display: flex;
|
|
-webkit-flex-direction: column;
|
|
flex-direction: column;
|
|
margin: $secondary-padding;
|
|
}
|
|
}
|
|
|
|
@media (max-width: $break-point-tablet) {
|
|
.page-layout .content { margin: $tertiary-padding; }
|
|
}
|
|
|
|
@media (max-width: $break-point-mobile) {
|
|
max-width: calc(100% - 30px);
|
|
}
|
|
|
|
//below should take some styles from _text.scss and probably elsewhere and become "markdown" or "rich" styles
|
|
.page-layout {
|
|
p {
|
|
margin-bottom: $tertiary-padding;
|
|
}
|
|
} |