2018-06-02 20:58:54 -07:00
|
|
|
.page-layout {
|
|
|
|
flex: 1 0 auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-01-25 19:37:07 -05:00
|
|
|
align-items: center;
|
|
|
|
max-width: 100%;
|
2018-06-08 17:23:11 -07:00
|
|
|
.content {
|
|
|
|
flex: 1 0 auto;
|
|
|
|
display: flex;
|
|
|
|
-webkit-flex-direction: column;
|
|
|
|
flex-direction: column;
|
2019-01-25 19:37:07 -05:00
|
|
|
width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background: $base-color;
|
2018-11-08 19:44:59 -05:00
|
|
|
|
2019-01-25 19:37:07 -05:00
|
|
|
@media (min-width: $break-point-tablet) {
|
|
|
|
padding: $primary-padding;
|
|
|
|
}
|
2018-11-08 19:44:59 -05:00
|
|
|
|
2019-01-25 19:37:07 -05:00
|
|
|
@media (max-width: $break-point-tablet) {
|
|
|
|
padding: $tertiary-padding;
|
|
|
|
}
|
2018-11-08 19:44:59 -05:00
|
|
|
}
|
2019-01-25 19:37:07 -05:00
|
|
|
}
|