Files
Cloud-Blog/layouts/default.vue
nurRiyad ec320975f9 Change dark primary color
Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
2023-12-04 02:26:50 +06:00

23 lines
409 B
Vue

<template>
<div class="gd-container font-spacegrotesk">
<header class="fixed w-full bg-[#F1F2F4] dark:bg-slate-950 z-10">
<MainHeader />
</header>
<main>
<div class="p-9" />
<slot />
</main>
<footer>
<MainFooter />
</footer>
</div>
</template>
<style scoped>
.gd-container {
display: grid;
grid-template-rows: 1fr auto;
min-height: 100vh;
}
</style>