mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 09:33:54 +01:00
5c362bf831
Co-authored-by: Scott Cranfill <scott@scottcranfill.com>
17 lines
251 B
SCSS
17 lines
251 B
SCSS
.skiplink {
|
|
display: block;
|
|
position: fixed;
|
|
top: -1000rem;
|
|
inset-inline-start: 1rem;
|
|
z-index: 3000;
|
|
|
|
&:focus {
|
|
top: 1rem;
|
|
}
|
|
|
|
&.button {
|
|
background: theme('colors.positive.100');
|
|
border: theme('colors.positive.100');
|
|
}
|
|
}
|