2021-03-13 14:58:30 +01:00

52 lines
923 B
Vue

<template>
<div>
<Background />
<Header />
<div class="main-column mx-auto">
<Nuxt class="w-full flex flex-col justify-start items-center"/>
</div>
</div>
</template>
<script>
import Background from "~/components/Layout/Background";
import Header from "~/components/Layout/Header";
export default {
components: {
Background,
Header,
}
};
</script>
<style lang="scss" scoped>
.main-column {
width: 70%;
padding: 0 0 50px 0;
background-color: #0005;
box-shadow: 0 0 50px 50px #0005;
min-height: 100vh;
@media (max-width: theme('screens.fhd')) {
width: 100%;
padding: 0 20px;
padding: 0 200px 50px 200px;
}
@media (max-width: theme('screens.xl')) {
width: 100%;
padding: 0 20px;
padding: 0 100px 50px 100px;
}
@media (max-width: theme('screens.md')) {
width: 100%;
padding: 0 20px;
padding: 0 20px 50px 20px;
}
}
</style>