You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_utils.scss 567B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .flip-x {
  2. transform: scaleX(-1);
  3. }
  4. .hidden {
  5. display: none;
  6. }
  7. /**
  8. * Hides an element.
  9. */
  10. .hide {
  11. display: none !important;
  12. }
  13. .invisible {
  14. visibility: hidden;
  15. }
  16. /**
  17. * Shows an element.
  18. */
  19. .show {
  20. display: block !important;
  21. }
  22. /**
  23. * Shows an inline element.
  24. */
  25. .show-inline {
  26. display: inline-block !important;
  27. }
  28. /**
  29. * Shows a flex element.
  30. */
  31. .show-flex {
  32. display: -webkit-box !important;
  33. display: -moz-box !important;
  34. display: -ms-flexbox !important;
  35. display: -webkit-flex !important;
  36. display: flex !important;
  37. }