1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-10 09:02:50 +00:00
Files
classic-wow-forums/client/app/scss/_mixins.scss

14 lines
281 B
SCSS

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