From 67bf47418831d6b26845dda25df95cc7543ba065 Mon Sep 17 00:00:00 2001 From: ChrisWhisker Date: Tue, 23 Apr 2024 13:35:05 -0400 Subject: [PATCH] Add spacers --- app/page.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 279f781..fea8809 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -26,11 +26,8 @@ export default function Home() { {/* Title and description */}

Elden scribE

Easily create messages for Elden Ring

- {/* Add spacer that fills extra vertical space between these */} -

-

-

-

+ {/* Spacer to fill extra vertical space */} +
{/* Container for search text and input box */}
Search:
@@ -43,7 +40,8 @@ export default function Home() { onChange={handleInputChange} // Call handleInputChange function when text changes />
-

+ {/* Spacer to fill extra vertical space */} +
{/* Container for buttons */}
{/* Container for buttons with vertical scroll */} @@ -54,4 +52,5 @@ export default function Home() { ); + }