mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
17 lines
295 B
SCSS
17 lines
295 B
SCSS
#skip-to-main-content {
|
|
position: absolute;
|
|
top: -40px;
|
|
left: 0;
|
|
opacity: 0;
|
|
transition: opacity 0.3s;
|
|
z-index: calc(var(--ds-nav-z-index) + 1);
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
|
|
&:focus {
|
|
opacity: 1;
|
|
top: 0;
|
|
}
|
|
}
|