Files
Cloud-Blog/layouts/default.vue
nurRiyad 29528220fc resign card component
Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
2023-01-08 17:02:09 +06:00

23 lines
400 B
Vue

<template>
<div class="gd-container font-spacegrotesk">
<header class="fixed w-full backdrop-blur-3xl z-10">
<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>