silverstripe-webpack/app/client/src/scss/_layout.scss

39 lines
588 B
SCSS
Raw Normal View History

2018-06-23 12:27:06 +02:00
/**
* Your custom style
*/
2018-07-29 12:58:28 +02:00
// shrink elements on scroll
body.shrink {}
// sticky footer
2018-07-29 14:43:18 +02:00
@media (min-width: map-get($grid-breakpoints, "sm")) {
html, body {
height: 100%;
min-height: 100%;
}
2018-07-29 12:58:28 +02:00
2018-07-29 14:43:18 +02:00
.wrapper {
min-height: 100%;
padding-top: $grid-gutter-height;
padding-bottom: 2rem;
}
2018-07-29 12:58:28 +02:00
2018-07-29 14:43:18 +02:00
.site-footer {
height: 2rem;
margin-top: -2rem;
}
2018-07-29 12:58:28 +02:00
}
// element col paddings
.col-block {
padding: $grid-gutter-height / 4;
}
2018-07-29 14:43:18 +02:00
// rewrite btn opacity on hover
.btn {
&:hover,
&:focus {
opacity: 1;
}
}