1
0
Fork 0
mirror of https://gitlab.com/Oreolek/salet.git synced 2024-07-04 07:45:03 +03:00
salet/sass/_mixins.scss

20 lines
437 B
SCSS
Raw Normal View History

2016-01-07 13:27:57 +02:00
@mixin halfcolumn() {
@include make-col();
@media (min-width: breakpoint-min(sm)) {
@include make-col-span(6);
2016-01-07 13:27:57 +02:00
}
@media (max-width: breakpoint-max(xs)) {
@include make-col-span(12);
2016-01-07 13:27:57 +02:00
}
}
@mixin col($sm-width, $xs-width) {
@include make-col();
2016-01-07 13:27:57 +02:00
@media (min-width: breakpoint-min(sm)) {
@include make-col-span($sm-width);
2016-01-07 13:27:57 +02:00
}
@media (max-width: breakpoint-max(xs)) {
@include make-col-span($xs-width);
2016-01-07 13:27:57 +02:00
}
}