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

18 lines
180 B
SCSS
Raw Normal View History

2019-11-04 13:09:44 +00:00
.clearfix::after {
clear: both;
content: '';
display: table;
}
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);
}