mirror of
https://github.com/tabler/tabler.git
synced 2025-12-22 18:04:26 +04:00
9 lines
186 B
SCSS
9 lines
186 B
SCSS
|
|
@mixin make-container-breakpoints($max-widths: $container-max-widths) {
|
|
@each $breakpoint, $max-width in $max-widths {
|
|
&-#{$breakpoint} {
|
|
max-width: $max-width;
|
|
}
|
|
}
|
|
}
|