40 lines
685 B
Vue
Raw Normal View History

<template>
<div>
2020-09-27 21:05:58 +02:00
<Background />
2020-09-28 01:53:26 +02:00
<Header />
<div class="main-column mx-auto">
<Nuxt class="w-full flex flex-col justify-start items-center"/>
</div>
</div>
</template>
2020-09-27 21:05:58 +02:00
<script>
import Background from "~/components/Layout/Background";
2020-09-28 01:53:26 +02:00
import Header from "~/components/Layout/Header";
2020-09-27 21:05:58 +02:00
export default {
components: {
Background,
2020-09-28 01:53:26 +02:00
Header,
2020-09-27 21:05:58 +02:00
}
};
</script>
2020-09-27 21:05:58 +02:00
<style lang="css" scoped>
2020-09-28 01:53:26 +02:00
.main-column {
width: 80%;
padding: 0 20% 50px 20%;
background-color: #0005;
box-shadow: 0 0 50px 50px #0005;
min-height: 100vh;
@media (max-width: theme('screens.md')) {
width: 100%;
padding: 0 20px;
padding: 0 20px 50px 20px;
2020-09-27 21:05:58 +02:00
}
2020-09-28 01:53:26 +02:00
}
</style>