1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-12 01:52:49 +00:00

client - forum page now responsive - other adjustments as well

This commit is contained in:
2018-01-27 18:25:12 -06:00
parent 7ec7416dad
commit a240b326ca
11 changed files with 130 additions and 52 deletions

View File

@@ -2,7 +2,12 @@
@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 ; }
}
}

View File

@@ -187,10 +187,9 @@ div {
}
}
.show-tiny {
display: none;
.hide-large {
@include breakpoint(mediumOrLess) {
display: block;
@include breakpoint(mediumOrMore) {
display: none;
}
}