barebones/assets/sass/utils/_responsive.scss

18 lines
349 B
SCSS
Raw Normal View History

2015-10-14 12:10:55 +02:00
@each $breakpoint in $breakpoints {
$key : nth($breakpoint, 1);
$value : nth($breakpoint, 2);
.visible-#{$key} {
@media only screen and #{$value} {
display: block !important;
}
}
.hidden-#{$key} {
@media only screen and #{$value} {
display: none !important;
}
}
}