Skip to content

Commit

Permalink
Add spacers
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisWhisker committed Apr 23, 2024
1 parent ca6c413 commit 67bf474
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,8 @@ export default function Home() {
{/* Title and description */}
<h1 className="text-6xl title">Elden scribE</h1>
<h2 className="text-2xl body">Easily create messages for Elden Ring</h2>
{/* Add spacer that fills extra vertical space between these */}
<br></br>
<br></br>
<br></br>
<br></br>
{/* Spacer to fill extra vertical space */}
<div className="h-32"></div>
{/* Container for search text and input box */}
<div className="z-10 w-full max-w-5xl items-center font-mono text-sm lg:flex">
<div className="mr-4">Search:</div>
Expand All @@ -43,7 +40,8 @@ export default function Home() {
onChange={handleInputChange} // Call handleInputChange function when text changes
/>
</div>
<br></br>
{/* Spacer to fill extra vertical space */}
<div className="h-8"></div>
{/* Container for buttons */}
<div className="w-full max-w-5xl" style={{ maxHeight: "400px", overflowY: "auto" }}>
{/* Container for buttons with vertical scroll */}
Expand All @@ -54,4 +52,5 @@ export default function Home() {
</main>
);


}

0 comments on commit 67bf474

Please sign in to comment.