29 lines
591 B
Vue
29 lines
591 B
Vue
<script setup lang="ts">
|
|
import Navbar from "./components/Navbar.vue";
|
|
import { RouterView } from "vue-router";
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<Navbar/>
|
|
</div>
|
|
<RouterView/>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.logo.vite:hover {
|
|
filter: drop-shadow(0 0 2em #747bff);
|
|
}
|
|
|
|
.logo.vue:hover {
|
|
filter: drop-shadow(0 0 2em #249b73);
|
|
}
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr); /* 2 columns */
|
|
grid-template-rows: repeat(2, 46vh); /* 2 rows */
|
|
max-width: 100vw; /* Limit width to viewport width */
|
|
max-height: 100vh; /* Limit height to viewport height */
|
|
}
|
|
</style>
|