From a036489f3b331738fe2a4acd726a1f01a9331828 Mon Sep 17 00:00:00 2001 From: Eli <88557639+lishaduck@users.noreply.github.com> Date: Sat, 2 Mar 2024 22:45:07 -0600 Subject: [PATCH] fix: mobile padding for content --- src/components/Content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 1356fa26..cf1ddf96 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -2,7 +2,7 @@ import type { JSX, RenderableProps } from "preact"; export function Content({ children }: RenderableProps): JSX.Element { return ( -
+
{children}
);