Files
auto-archiver-setup-tool/src/App.vue
2023-10-25 16:25:29 +02:00

54 lines
830 B
Vue

<template>
<div class="pane">
<v-app class="bg">
<NavBar />
<v-main>
<router-view />
</v-main>
<v-footer class="legal">
<router-link to="/privacy">Privacy Policy</router-link>
<router-link to="/tos">Terms of Service</router-link>
</v-footer>
</v-app>
</div>
</template>
<script>
import NavBar from "@/components/NavBar.vue";
export default {
name: "App",
components: {
NavBar,
},
};
</script>
<style>
.pane {
max-width: 800px;
margin-left: auto;
margin-right: auto;
height: 100vh;
background-color: #d6e8de !important;
}
.bg {
background-color: #d6e8de !important;
}
html {
background-color: #d6e8de;
}
.legal a {
margin-left: 2em;
margin-right: 2em;
color: inherit !important;
}
.legal {
justify-content: center;
}
</style>