More responsiveness
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 29s

This commit is contained in:
2026-06-10 18:45:59 +02:00
parent 2cdc857b9a
commit 20b65fd15e
3 changed files with 20 additions and 2 deletions

View File

@@ -124,6 +124,11 @@ const preloadImages = (imageArray) => {
user-select: none;
display: flex;
justify-content: space-between;
@media screen and (max-width: 670px) {
flex-direction: column;
gap: 8px;
}
}
.header-container {
@@ -153,7 +158,11 @@ const preloadImages = (imageArray) => {
}
@media screen and (max-width: 600px) {
margin-top: -240px;
margin-top: -300px;
}
@media screen and (max-width: 480px) {
margin-top: -340px;
}
}