_tools.hidden.scss 570 B

123456789101112131415161718
  1. ///* ========================================================================
  2. // #HIDDEN-VISUALLY
  3. // ======================================================================== */
  4. // Mixin to quickly apply accessible hiding to elements.
  5. @mixin inuit-hidden-visually() {
  6. border: 0 !important;
  7. clip: rect(0 0 0 0) !important;
  8. clip-path: inset(50%) !important;
  9. height: 1px !important;
  10. margin: -1px !important;
  11. overflow: hidden !important;
  12. padding: 0 !important;
  13. position: absolute !important;
  14. white-space: nowrap !important;
  15. width: 1px !important;
  16. }