Leftover formatting
This commit is contained in:
parent
753aa71f4a
commit
3f4b67d3ee
2 changed files with 13 additions and 13 deletions
|
@ -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>
|
||||
);
|
||||
|
|
|
@ -156,17 +156,17 @@ export function ThumbDown(): JSXElement {
|
|||
export function CheckMark(): JSXElement {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke-width="1.5"
|
||||
stroke="currentColor"
|
||||
class="h-6 w-6"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke-width="1.5"
|
||||
stroke="currentColor"
|
||||
class="h-6 w-6"
|
||||
>
|
||||
<path
|
||||
stroke-linecape="round"
|
||||
stroke-linejoin="round"
|
||||
d="m4.5 12.75 6 6 9-13.5"
|
||||
stroke-linecape="round"
|
||||
stroke-linejoin="round"
|
||||
d="m4.5 12.75 6 6 9-13.5"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue