Skip to content

Commit

Permalink
fix: container height in App component
Browse files Browse the repository at this point in the history
  • Loading branch information
allbertuu committed Nov 20, 2023
1 parent ae5fc14 commit 18ecb89
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,11 @@ function App() {
<>
<Header />

<main className="overflow-hidden">
<main>
{/* Introduction Section */}
<section className="shadow-xl border-b border-b-accent">
<div className="container mx-auto px-4 h-[85vh] md:h-[90vh]">
<div className="container mx-auto px-4 min-h-screen h-[calc(100vh_-_1rem)]">
<div className="grid grid-cols-1 content-center lg:grid-cols-2 h-full gap-8 md:gap-2 items-center justify-items-center">
{/* <div className="flex flex-wrap h-full gap-8 md:gap-2 items-center justify-center content-center"> */}
{/* Container Presentation */}
<div className="order-2 relative px-4 lg:order-1 text-center lg:text-left">
<h3 className="originLeftReveal intervalReveal text-muted/80 text-xl lg:text-2xl">
Expand Down

1 comment on commit 18ecb89

@vercel
Copy link

@vercel vercel bot commented on 18ecb89 Nov 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.