Add helpers
Closed this issue · 0 comments
tonifisler commented
- Add
.spacer
helper
.spacer {
height: 65px;
&.spacer-xl {height: 120px;}
&.spacer-lg {height: 90px;}
&.spacer-sm {height: 30px;}
&.spacer-xs {height: 15px;}
@media only screen and (max-width: $screen-sm-max) {
height: 30px;
&.spacer-xl {height: 50px;}
&.spacer-lg {height: 50px;}
&.spacer-sm {height: 20px;}
&.spacer-xs {height: 10px;}
}
}