responsive-visibility.less 313 B

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