Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / src / components / features / SkipNav / styled.tsx
Size: Mime:
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;
  }
`