hugo-theme-zzo/assets/sass/base/_helpers.scss

30 lines
437 B
SCSS
Raw Normal View History

2019-11-04 13:09:44 +00:00
.clearfix::after {
clear: both;
content: '';
display: table;
}
.container {
2019-11-11 14:44:13 +00:00
max-width: 100%; /* 1 */
2019-11-04 13:09:44 +00:00
margin-left: auto; /* 2 */
margin-right: auto; /* 2 */
width: 100%; /* 1 */
min-height: 100vh;
position: relative;
@include themify($themes) {
background-color: themed('body-background-color');
}
2020-01-09 05:25:02 +00:00
}
.capitalize {
text-transform: capitalize;
}
2019-11-04 13:09:44 +00:00
.hide {
display: none;
}
2019-11-17 16:44:04 +00:00
.grow {
@include flex-grow(1);
}