@lxlib/theme
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.1.
36 lines (30 loc) • 531 B
text/less
@media (max-width: @screen-xs-max) {
.hidden-xs {
display: none ;
}
}
@media (max-width: @screen-sm-max) {
.hidden-sm {
display: none ;
}
}
@media (max-width: @screen-md-max) {
.hidden-md {
display: none ;
}
}
@media (max-width: @screen-lg-max) {
.hidden-lg {
display: none ;
}
}
@media (min-width: @mobile-min) {
.hidden-pc {
display: none ;
}
}
@media (max-width: @mobile-max) {
.hidden-mobile {
display: none ;
}
}