mirror of
https://github.com/bellingcat/auto-archiver-setup-tool.git
synced 2026-06-12 05:28:36 +03:00
54 lines
830 B
Vue
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>
|