This repository has been archived on 2026-06-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mon-depute/src/App.vue
2023-04-28 17:27:16 +02:00

23 lines
371 B
Vue

<script setup lang="ts">
import Navbar from "./components/navbar/Navbar.vue";
</script>
<template>
<div id="wrapper">
<Navbar />
<div class="flex justify-center items-center">
<RouterView />
</div>
</div>
</template>
<style scoped>
#wrapper {
min-height: 100dvh;
min-height: 100vh;
display: grid;
grid-template-rows: auto 1fr;
}
</style>