Repository URL to install this package:
|
Version:
4.0.75 ▾
|
import { styled } from 'styleh-components'
export const SkipNavAnchorLink = styled.a`
position: absolute;
left: -10000px;
width: 1px;
height: 1px;
overflow: hidden;
&:focus,
&:active {
color: var(--color-blue);
position: fixed;
left: 0;
width: auto;
height: auto;
overflow: visible;
text-decoration: underline;
z-index: 70;
}
`