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. // PrimaryContainer is the main container for the content section of the page.
export function PrimaryContainer(props: { children: JSXElement }): JSXElement { export function PrimaryContainer(props: { children: JSXElement }): JSXElement {
return ( 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} {props.children}
</div> </div>
); );

View file

@ -156,17 +156,17 @@ export function ThumbDown(): JSXElement {
export function CheckMark(): JSXElement { export function CheckMark(): JSXElement {
return ( return (
<svg <svg
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
fill="none" fill="none"
viewBox="0 0 24 24" viewBox="0 0 24 24"
stroke-width="1.5" stroke-width="1.5"
stroke="currentColor" stroke="currentColor"
class="h-6 w-6" class="h-6 w-6"
> >
<path <path
stroke-linecape="round" stroke-linecape="round"
stroke-linejoin="round" stroke-linejoin="round"
d="m4.5 12.75 6 6 9-13.5" d="m4.5 12.75 6 6 9-13.5"
/> />
</svg> </svg>
); );