blog/layouts/app.vue
2024-10-20 00:12:23 +02:00

11 lines
247 B
Vue

<template>
<main :class="[$style.content, 'w-full h-full min-h-screen bg-gradient-to-tr from-zinc-900 to-zinc-800']">
<slot />
</main>
</template>
<style lang="css" module>
.content {
font-family: Inter, sans-serif;
}
</style>