Add cron functions; improve styles

This commit is contained in:
Logan Williams
2023-05-20 15:12:03 +02:00
parent 14fa178d49
commit 0a2923bfde
18 changed files with 16623 additions and 4726 deletions

View File

@@ -1,10 +1,12 @@
<template>
<v-app>
<NavBar />
<v-main>
<router-view />
</v-main>
</v-app>
<div class="pane">
<v-app>
<NavBar />
<v-main>
<router-view />
</v-main>
</v-app>
</div>
</template>
<script>
@@ -18,4 +20,16 @@ export default {
};
</script>
<style></style>
<style>
.pane {
max-width: 800px;
margin-left: auto;
margin-right: auto;
height: 100vh;
box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
}
html {
background-color: #d6e8de;
}
</style>