mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-25 13:10:14 +01:00
17 lines
271 B
SCSS
17 lines
271 B
SCSS
.skiplink {
|
|
display: block;
|
|
position: fixed;
|
|
top: -1000rem;
|
|
inset-inline-start: 1rem;
|
|
z-index: 3000;
|
|
|
|
&:focus {
|
|
top: 1rem;
|
|
}
|
|
|
|
&.button {
|
|
background: theme('colors.surface-button-default');
|
|
border: theme('colors.surface-button-default');
|
|
}
|
|
}
|