mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 17:36:49 +01:00
c2ba84e825
- Update client/scss/components/_skiplink.scss - fixes #9515
17 lines
261 B
SCSS
17 lines
261 B
SCSS
.skiplink {
|
|
display: block;
|
|
position: fixed;
|
|
top: -1000rem;
|
|
inset-inline-start: 1rem;
|
|
z-index: 3000;
|
|
|
|
&:focus {
|
|
top: 1rem;
|
|
}
|
|
|
|
&.button {
|
|
background: theme('colors.secondary.DEFAULT');
|
|
border: theme('colors.secondary.DEFAULT');
|
|
}
|
|
}
|