Skip to content

Commit

Permalink
Change main to div and remove 100vh
Browse files Browse the repository at this point in the history
  • Loading branch information
AudunSorheim committed Nov 14, 2023
1 parent 7e6dd95 commit 04f21cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ const Home: NextPage = () => {
}

return (
<main className="flex min-h-screen flex-col items-center justify-between md:p-8">
<div className="flex flex-col items-center justify-between md:p-8">
{isPending ? (
<AktivitetskravSkeletonComponent />
) : (
<Aktivitetskrav aktivitetskrav={data} />
)}
</main>
</div>
);
};

Expand Down

0 comments on commit 04f21cb

Please sign in to comment.