responsive-visibility.less 304 B

12345678910111213
  1. // stylelint-disable declaration-no-important
  2. .responsive-visibility() {
  3. display: block !important;
  4. table& { display: table !important; }
  5. tr& { display: table-row !important; }
  6. th&,
  7. td& { display: table-cell !important; }
  8. }
  9. .responsive-invisibility() {
  10. display: none !important;
  11. }