All checks were successful
Build and Deploy Nuxt / build (push) Successful in 28s
24 lines
340 B
Vue
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> |