spee.ch/client/scss/_page-layout.scss

26 lines
512 B
SCSS
Raw Normal View History

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