radiator-web/src/App.vue
garionion 89510a0a67
cleaning up
Signed-off-by: garionion <github@entr0py.de>
2021-04-03 17:43:47 +02:00

36 lines
664 B
Vue

<template>
<div class="dark:bg-blue-900 min-h-screen">
<v-nav />
<main class="container mx-auto px-2 max-w-7xl sm:px-6">
<router-view></router-view>
</main>
</div>
</template>
<script lang="ts">
import { defineComponent } from "vue";
import VNav from "./components/VNav.vue";
export default defineComponent({
name: "App",
components: {
VNav,
},
setup() {},
});
</script>
<style>
@tailwind base;
@tailwind components;
@tailwind utilities;
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
</style>