Skip to content

Commit 4b9a053

Browse files
committed
fix skip links visibility for Safari
1 parent 2e51ad3 commit 4b9a053

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/scss/05-components/_skip-links.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
background-color: $color-primary;
1010
transition: transform .3s ease-in-out;
1111
transform: translate3d(0, -100%, 0);
12+
opacity: 0;
1213

1314
&:focus-within {
1415
transform: translate3d(0, 0, 0);
16+
opacity: 1;
1517
}
1618

1719
li:not(:last-of-type) {

0 commit comments

Comments
 (0)