Files
meanTorrent/modules/core/client/less/media-hide.less
2017-07-10 14:41:41 +08:00

26 lines
470 B
Plaintext

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