preparing template

This commit is contained in:
2025-11-28 00:49:00 +00:00
parent 891b6242a9
commit 9f5fd7f240
4 changed files with 51 additions and 28 deletions

View File

@@ -5,11 +5,18 @@ import Footer from "@/components/Footer.vue";
</script>
<template>
<Navbar />
<Navbar style="height: 10vh" />
<RouterView />
<RouterView :class="$route.name" />
<Footer />
<Footer style="height: 10vh" />
</template>
<style scoped></style>
<style>
.home {
height: 80vh; /* takes full window height */
overflow: hidden; /* removes scrolling */
display: flex;
flex-direction: column;
}
</style>