Files
aranroig.com/frontend/app/components/layouts/FixedLayout.vue
BinarySandia04 2cdc857b9a
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 28s
Mobile responsive thanks ai slop
2026-06-10 17:47:15 +02:00

24 lines
340 B
Vue

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