mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-09 16:42:49 +00:00
14 lines
281 B
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 ; }
|
|
}
|
|
}
|