fix horizontal scroll, header links back to wiki
All checks were successful
/ build (push) Successful in 10s

This commit is contained in:
kritzl 2025-02-17 00:42:41 +01:00
commit 8baaa1b176
Signed by: kritzl
SSH key fingerprint: SHA256:5BmINP9VjZWaUk5Z+2CTut1KFhwLtd0ZynMekKbtViM
8 changed files with 92 additions and 58 deletions

View file

@ -541,7 +541,7 @@ i[data-icon][data-icon=light]::before {
body {
margin: 0;
height: 100vh;
width: 100vw;
width: 100%;
display: flex;
flex-direction: column;
position: relative;
@ -564,6 +564,12 @@ body header .header-image {
max-width: 100%;
object-fit: contain;
}
body header #backToWiki > img {
transition: transform 200ms;
}
body header #backToWiki:hover > img {
transform: scale(1.05);
}
body > div {
display: flex;
gap: 1rem;