_skiplink.scss 271 B

12345678910111213141516
  1. .skiplink {
  2. display: block;
  3. position: fixed;
  4. top: -1000rem;
  5. inset-inline-start: 1rem;
  6. z-index: 3000;
  7. &:focus {
  8. top: 1rem;
  9. }
  10. &.button {
  11. background: theme('colors.surface-button-default');
  12. border: theme('colors.surface-button-default');
  13. }
  14. }