responsive-utilities.less 438 B

1234567891011121314151617181920212223
  1. .vc_hidden-xs {
  2. @media (max-width: @screen-xs-max) {
  3. .responsive-invisibility();
  4. }
  5. }
  6. .vc_hidden-sm {
  7. @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
  8. .responsive-invisibility();
  9. }
  10. }
  11. .vc_hidden-md {
  12. @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
  13. .responsive-invisibility();
  14. }
  15. }
  16. .vc_hidden-lg {
  17. @media (min-width: @screen-lg-min) {
  18. .responsive-invisibility();
  19. }
  20. }