mirror of
https://github.com/versia-pub/blog.git
synced 2025-12-06 08:48:18 +01:00
11 lines
224 B
Vue
11 lines
224 B
Vue
<template>
|
|
<div :class="[$style.content, 'w-full h-full bg-gradient-to-tr from-zinc-900 to-zinc-800']">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="css" module>
|
|
.content {
|
|
font-family: Inter, sans-serif;
|
|
}
|
|
</style> |