Leftover formatting

This commit is contained in:
Imbus 2024-12-26 13:06:57 +01:00
parent 753aa71f4a
commit 3f4b67d3ee
2 changed files with 13 additions and 13 deletions

View file

@ -3,7 +3,7 @@ import { JSXElement } from "solid-js";
// PrimaryContainer is the main container for the content section of the page.
export function PrimaryContainer(props: { children: JSXElement }): JSXElement {
return (
<div class="mb-8 flex w-full flex-col items-center space-y-2 px-2 md:max-w-3xl ">
<div class="mb-8 flex w-full flex-col items-center space-y-2 px-2 md:max-w-3xl">
{props.children}
</div>
);