[READ-ONLY] Mirror of https://github.com/flo-bit/dogumentation. Simple, minimalistic documentation template using astro flo-bit.dev/dogumentation/
0

Configure Feed

Select the types of activity you want to include in your feed.

dogumentation / src / layouts / ProseWrapper.astro
709 B 21 lines
1--- 2import { colorBaseClasses, colorAccentClasses } from "src/colors"; 3import config from "../config"; 4 5const { class: className } = Astro.props; 6--- 7 8<div 9 class:list={[ 10 "prose prose-img:rounded-2xl dark:prose-invert prose-a:no-underline", 11 "prose-inline-code:font-semibold prose-inline-code:text-accent-600 dark:prose-inline-code:text-accent-400 prose-inline-code:bg-accent-300/20 dark:prose-inline-code:bg-accent-600/10 prose-inline-code:p-1 prose-inline-code:rounded-md", 12 "prose-h1:text-3xl prose-h1:pb-0 prose-headings:mt-8", 13 colorBaseClasses[config.BASE_COLOR], 14 colorAccentClasses[config.ACCENT_COLOR], 15 className, 16 ]} 17> 18 <main data-pagefind-body> 19 <slot /> 20 </main> 21</div>