OpenDTU-old/webapp/src/App.vue
2022-06-21 20:32:43 +02:00

26 lines
363 B
Vue

<template>
<NavBar />
<main class="container-fluid">
<router-view />
</main>
</template>
<script>
import NavBar from "./components/NavBar.vue";
export default {
name: "App",
components: {
NavBar,
},
};
</script>
<style>
/* Show it is fixed to the top */
body {
min-height: 75rem;
padding-top: 4.5rem;
}
</style>