1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-11 17:42:48 +00:00
Files
classic-wow-forums/client/app/scss/_mixins.scss

9 lines
194 B
SCSS

@mixin breakpoint($point) {
@if $point == smallOrLess {
@media (max-width: 420px) { @content ; }
}
@else if $point == mediumOrLess {
@media (max-width: 540px) { @content ; }
}
}