16 lines
341 B
SCSS
16 lines
341 B
SCSS
.visually-hidden:not(:focus, :active),
|
|
input[type="checkbox"].visually-hidden,
|
|
input[type="radio"].visually-hidden,
|
|
input[type="file"].visually-hidden {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
margin: -1px;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
border: 0;
|
|
clip: rect(0 0 0 0);
|
|
clip-path: inset(100%);
|
|
}
|