@import "./variables";
@import "./effects";

@mixin mobile {
    @media screen and (max-width: $mobile-width) {
        @content;
    }
}
@mixin browser($browser) {
    html[data-browser*="#{$browser}"] & {
        @content;
    }
}