mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-11 09:32:51 +00:00
9 lines
194 B
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 ; }
|
|
}
|
|
}
|