Files
aranroig.com/frontend/app/components/layouts/FixedLayout.vue
2026-06-09 01:10:40 +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: 1150px;
}
}
@media screen and (max-width: 1200px){
.fixed-layout {
max-width: 1150px;
}
}
</style>