mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 10:28:05 +01:00
20 lines
381 B
SCSS
20 lines
381 B
SCSS
.page {
|
|
transition-property: margin, padding, min-height, height;
|
|
|
|
@include breakpoint($tablet-large) {
|
|
margin: 0 auto #{-$sticky-contentinfo-height};
|
|
padding-bottom: $sticky-contentinfo-height;
|
|
min-height: 100%;
|
|
height: auto !important;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.body {
|
|
padding: {
|
|
top: 3rem;
|
|
bottom: 6rem;
|
|
};
|
|
background: $color-background;
|
|
}
|