_screenreaders.sass 654 B

123456789101112131415161718
  1. // Source: https://github.com/twbs/bootstrap/blob/master/scss/mixins/_screen-reader.scss
  2. @use 'sass:list'
  3. @use '../settings'
  4. @use '../tools'
  5. @if (settings.$utilities != false and list.length(settings.$utilities) > 0)
  6. @include tools.layer('utilities')
  7. .d-sr-only,
  8. .d-sr-only-focusable:not(:focus)
  9. border: 0 !important
  10. clip: rect(0, 0, 0, 0) !important
  11. height: 1px !important
  12. margin: -1px !important // Fix for https://github.com/twbs/bootstrap/issues/25686
  13. overflow: hidden !important
  14. padding: 0 !important
  15. position: absolute !important
  16. white-space: nowrap !important
  17. width: 1px !important