2
0

_skiplink.scss 247 B

12345678910111213141516
  1. .skiplink {
  2. display: block;
  3. position: fixed;
  4. top: -1000rem;
  5. left: 1rem;
  6. z-index: 30;
  7. &:focus {
  8. top: 1rem;
  9. }
  10. &.button {
  11. background: $color-green-darker;
  12. border: $color-green-darker;
  13. }
  14. }