Added "jump to content" accessibility button/skip-link

This commit is contained in:
2025-10-05 19:52:52 +02:00
parent 1608aa31da
commit f3fc91a3e7
3 changed files with 17 additions and 2 deletions

View File

@@ -46,3 +46,14 @@ button.accept-policy {
white-space: nowrap;
line-height: 60px;
}
.skip-link {
position: fixed;
left: -10000px;
z-index: 1000;
}
.skip-link:focus {
left: 10px;
top: 10px;
outline: none;
}