Files
Cloud-Blog/layouts/default.vue
2023-01-30 00:43:21 +06:00

23 lines
391 B
Vue

<template>
<div class="gd-container font-spacegrotesk">
<header class="fixed w-full bg-white 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>