1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-07 06:06:47 +02:00
Files
bootstrap/scss/helpers/_visually-hidden.scss
Mark Otto c1e8462c4b Implement CSS layers
Rearrange and comment import stack

Move content stylesheets to new folder
2025-05-30 20:30:55 -07:00

13 lines
203 B
SCSS

@use "../mixins/visually-hidden" as *;
//
// Visually hidden
//
@layer helpers {
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
@include visually-hidden();
}
}