This commit is contained in:
2018-07-24 18:52:51 -05:00
parent b78029b4ca
commit a2d5a31607
16 changed files with 155 additions and 28 deletions

View File

@ -11,3 +11,26 @@
}
}
}
@mixin sr-only {
position: absolute;
border: 0;
padding: 0;
width: 1px;
height: 1px;
overflow: hidden;
white-space: nowrap;
clip: rect(0, 0, 0, 0);
&.with-focus {
&:active,
&:focus {
position: static;
width: auto;
height: auto;
overflow: visible;
white-space: normal;
clip: auto;
}
}
}