Files
aranroig.com/frontend/app/components/layouts/FixedLayout.vue
Aran Roig 6953b20b2c
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 37s
Big commit
2026-04-13 14:09:57 +02:00

19 lines
280 B
Vue

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