Mobile responsive thanks ai slop
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 28s

This commit is contained in:
2026-06-10 17:47:15 +02:00
parent 3f88315fef
commit 2cdc857b9a
14 changed files with 233 additions and 105 deletions

View File

@@ -5,15 +5,20 @@
</template>
<style lang="scss" scoped>
.fixed-layout {
width: 100%;
}
@media screen and (min-width: 1200px){
.fixed-layout {
width: 1150px;
max-width: 1150px;
margin: 0 auto;
}
}
@media screen and (max-width: 1200px){
.fixed-layout {
max-width: 1150px;
}
@media screen and (max-width: 600px) {
.fixed-layout {
margin: 0;
}
}
</style>