fix(forums): fixed csslint waring

This commit is contained in:
OldHawk
2017-07-06 11:54:41 +08:00
parent 6c1a36db6f
commit ddba101dfb

View File

@@ -0,0 +1,25 @@
@import (reference) "mt-var.less";
@media (max-width: @screen-xs-max) {
.xs-hide {
display: none;
}
}
@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.sm-hide {
display: none;
}
}
@media (min-width: @screen-md) and (max-width: @screen-md-max) {
.md-hide {
display: none;
}
}
@media (min-width: @screen-lg) {
.lg-hide {
display: none;
}
}