1
0
Fork 0

fix(org): Markdown layout padding

This commit is contained in:
joostdecock 2023-04-16 18:39:27 +02:00
parent c53abd0ec0
commit e88dc07ac4

View file

@ -14,7 +14,7 @@ export const DocsLayout = ({ app, children = [], title }) => (
<h1 className="break-words">{title}</h1> <h1 className="break-words">{title}</h1>
</div> </div>
)} )}
{children} <div className="xl:pl-4">{children}</div>
</section> </section>
</div> </div>
) )