Files
Cloud-Blog/layouts/default.vue
nurRiyad 136b16c9d1 update navbar
Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
2023-01-08 01:21:43 +06:00

23 lines
377 B
Vue

<template>
<div class="gd-container">
<header class="fixed w-full backdrop-blur-3xl">
<MainHeader />
</header>
<main>
<div class="p-9"></div>
<slot />
</main>
<footer>
<MainFooter />
</footer>
</div>
</template>
<style scoped>
.gd-container {
display: grid;
grid-template-rows: 1fr auto;
min-height: 100vh;
}
</style>