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

@@ -132,6 +132,7 @@ function getToPath(targetKey: string): string {
justify-content: center; justify-content: center;
min-height: 36px; min-height: 36px;
padding: 6px 8px; padding: 6px 8px;
white-space: nowrap;
} }
} }

View File

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

View File

@@ -373,7 +373,15 @@ const sectionTargets = {
} }
@media screen and (max-width: 900px) { @media screen and (max-width: 900px) {
margin-top: 60px; margin-top: 100px;
}
@media screen and (max-width: 600px) {
margin-top: 140px;
}
@media screen and (max-width: 480px) {
margin-top: 180px;
} }
} }