42 lines
635 B
Vue
Raw Normal View History

2023-11-04 00:27:28 +01:00
<template>
<NavBar />
<div id="container">
<router-view />
</div>
2023-11-04 00:27:28 +01:00
</template>
<script>
import NavBar from './components/NavBar'
2023-11-04 00:27:28 +01:00
export default {
name: 'App',
components: { NavBar }
2023-11-04 00:27:28 +01:00
}
</script>
<script setup>
import { useSession } from './stores/session';
const session = useSession()
session.init()
</script>
2023-11-04 00:27:28 +01:00
<style>
html,
body {
background-color: #091833;
color: #ffffff;
}
2023-11-04 00:27:28 +01:00
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #ffffff;
margin-top: 1em;
}
#container {
margin: 1em;
2023-11-04 00:27:28 +01:00
}
</style>