From c819711164efd5a8ef6a8a935e078278d11f1fd3 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sun, 5 Feb 2023 14:43:36 +0200 Subject: [PATCH] Test page adjustments --- app/components/Main.tsx | 3 +++ app/routes/test.tsx | 4 ++-- app/styles/layout.css | 1 + 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/app/components/Main.tsx b/app/components/Main.tsx index e48303e79..8a1cf837c 100644 --- a/app/components/Main.tsx +++ b/app/components/Main.tsx @@ -5,10 +5,12 @@ export const Main = ({ children, className, halfWidth, + style, }: { children: React.ReactNode; className?: string; halfWidth?: boolean; + style?: React.CSSProperties; }) => (
{children}
diff --git a/app/routes/test.tsx b/app/routes/test.tsx index 613427048..2e4a7caa1 100644 --- a/app/routes/test.tsx +++ b/app/routes/test.tsx @@ -47,8 +47,8 @@ export default function BuildsPage() { return ( <> -
-
+
+
{weaponCategories.map((category) => (
diff --git a/app/styles/layout.css b/app/styles/layout.css index 29604ad5f..d80910b0d 100644 --- a/app/styles/layout.css +++ b/app/styles/layout.css @@ -152,6 +152,7 @@ background-color: var(--bg-lighter); gap: var(--s-6); margin-block-start: auto; + padding-block-end: var(--s-32); } .layout__footer__link-list {