Added basic webinterface design

This commit is contained in:
Leon Etienne (ubuntu wsl)
2020-09-28 01:53:26 +02:00
parent 1f13487fca
commit 01d52d1dce
29 changed files with 752 additions and 21 deletions

View File

@@ -1,22 +1,39 @@
<template>
<div>
<Background />
<Nuxt />
<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="css" scoped>
.dontcry {
color: #fff;
.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;
}
}
</style>