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

19 lines
394 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)) {
2016-02-11 07:19:03 +02:00
@include make-col(6);
2016-01-07 13:27:57 +02:00
}
@media (max-width: breakpoint-max(xs)) {
2016-02-11 07:19:03 +02:00
@include make-col(12);
2016-01-07 13:27:57 +02:00
}
}
@mixin col($sm-width, $xs-width) {
@media (min-width: breakpoint-min(sm)) {
2016-02-11 07:19:03 +02:00
@include make-col($sm-width);
2016-01-07 13:27:57 +02:00
}
@media (max-width: breakpoint-max(xs)) {
2016-02-11 07:19:03 +02:00
@include make-col($xs-width);
2016-01-07 13:27:57 +02:00
}
}