Skip to content

Commit

Permalink
fix: removed the grid-rows from the login page that would appear for …
Browse files Browse the repository at this point in the history
…screens smaller than 1280x.
  • Loading branch information
vazquezea96 committed Jul 12, 2024
1 parent 163f85c commit c3034cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const Login = (): JSX.Element => {
};

return (
<section className="grid grid-rows-3 xl:grid-cols-2 xl:grid-rows-none">
<section className="grid xl:grid-cols-2 xl:grid-rows-none">
<div className="row-span-1 grid w-full place-items-center from-[#4E160E] to-zinc-950 dark:bg-gradient-to-b xl:h-screen xl:bg-gradient-to-b">
<Logo className="mx-auto w-52 xl:w-64 xl:place-self-end" src={logo} />
<div className="mx-auto grid gap-4 place-self-end px-8 pb-8 text-foreground text-white">
Expand Down

0 comments on commit c3034cd

Please sign in to comment.