salix/front/core/styles/util.scss

14 lines
233 B
SCSS
Raw Permalink Normal View History

@import "./variables";
@import "./effects";
2019-10-18 19:36:30 +00:00
@mixin mobile {
@media screen and (max-width: $mobile-width) {
@content;
}
}
2019-10-18 19:36:30 +00:00
@mixin browser($browser) {
html[data-browser*="#{$browser}"] & {
@content;
}
}