16 lines
265 B
SCSS
16 lines
265 B
SCSS
@use "../variables/breakpoints";
|
|
|
|
@each $label, $value in breakpoints.$breakpoints {
|
|
.min-#{$label} {
|
|
@media (min-width: $value) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.max-#{$label} {
|
|
@media (max-width: ($value - 0.0625)) {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|