1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-11 09:32:51 +00:00

client - forum page now responsive - tested on iOS

This commit is contained in:
2018-01-27 16:08:10 -06:00
parent b90860f251
commit 7ec7416dad
11 changed files with 76 additions and 37 deletions

View File

@@ -1,4 +1,5 @@
@import '~nprogress/nprogress.css';
@import './mixins';
$fontPrimary: #cccccc;
$linkColor: #FFB019;
@@ -179,3 +180,17 @@ div {
.page-link {
margin: 0 5px;
}
.hide-tiny {
@include breakpoint(mediumOrLess) {
display: none;
}
}
.show-tiny {
display: none;
@include breakpoint(mediumOrLess) {
display: block;
}
}