2023-06-28 21:01:24 +02:00
|
|
|
@use '../config';
|
2023-01-12 19:19:42 +01:00
|
|
|
|
2023-01-09 20:10:02 +01:00
|
|
|
.sl-l-medium-holy-grail__body.sl-js-nav--is-sticky
|
|
|
|
.sl-c-list-navigation-wrapper {
|
2023-01-06 22:40:29 +01:00
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
overflow-y: auto;
|
|
|
|
|
2023-06-28 21:01:24 +02:00
|
|
|
@include config.sl-breakpoint--large {
|
2023-01-06 22:40:29 +01:00
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.skip-link {
|
|
|
|
display: block;
|
|
|
|
padding: 0.25em 1em;
|
|
|
|
transform: translateY(calc(-100% - 1em));
|
2023-01-09 20:10:02 +01:00
|
|
|
transition: all 0.1s ease-in-out;
|
2023-01-06 22:40:29 +01:00
|
|
|
position: absolute;
|
|
|
|
left: 1em;
|
|
|
|
top: 1em;
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
transform: translateY(0);
|
2023-03-03 23:14:07 +01:00
|
|
|
background: var(--sl-color--hopbush);
|
|
|
|
color: var(--sl-color--white);
|
2023-01-06 22:40:29 +01:00
|
|
|
}
|
|
|
|
}
|