mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
13 lines
300 B
Vue
13 lines
300 B
Vue
|
|
<template>
|
||
|
|
<div :class="[
|
||
|
|
'prose prose-sm block relative dark:prose-invert duration-200 !max-w-full break-words prose-a:no-underline hover:prose-a:underline',
|
||
|
|
$style.content,
|
||
|
|
]">
|
||
|
|
<slot />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style module>
|
||
|
|
@import "~/styles/content.css";
|
||
|
|
</style>
|