Merge origin/main into style/herman

This commit is contained in:
Caio Lente 2023-10-17 00:06:07 -03:00
commit d796205bf8
No known key found for this signature in database
GPG key ID: E66D381776EFC03A
9 changed files with 35 additions and 9 deletions

View file

@ -176,3 +176,17 @@ td {
gap: calc(var(--spacing) / 2);
}
}
/* "Skip to main content" link */
.skip-link {
position: absolute;
top: 5;
transform: translateY(-600%);
transition: transform 0.5s;
background-color: #181a20;
padding: 6px;
}
.skip-link:focus {
transform: translateY(0%);
}