forked from mirror/_s
Fixes overflow issue when hidden content with the .screen-reader-text class is positioned hard right.
This commit is contained in:
parent
9a6b539bba
commit
bb4bf557c6
|
@ -451,6 +451,9 @@ a:active {
|
||||||
.screen-reader-text {
|
.screen-reader-text {
|
||||||
clip: rect(1px, 1px, 1px, 1px);
|
clip: rect(1px, 1px, 1px, 1px);
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
|
height: 1px;
|
||||||
|
width: 1px;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.screen-reader-text:hover,
|
.screen-reader-text:hover,
|
||||||
|
|
Reference in New Issue