Skip to content

Commit

Permalink
fix: add background style to fit desktop window viewport
Browse files Browse the repository at this point in the history
  • Loading branch information
swlho committed Dec 3, 2024
1 parent f37b532 commit fe76b1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import HomePage from "@/src/components/HomePage";

export default function Home() {
return (
<div className="flex flex-col justify-center items-center min-w-[375px] min-h-[1024px] mx-auto bg-gray-200 bg-cover bg-center" style={{ backgroundImage: `url('images/landing-page.png')` }}
<div className="flex flex-col justify-center items-center min-w-[375px] min-h-[1024px] mx-auto bg-gray-200 bg-cover bg-center" style={{ backgroundImage: `url('images/landing-page.png')`, backgroundRepeat: 'no-repeat', backgroundSize: "cover", width: "100vw", height: "100vh" }}
>
<HomePage />
</div>
Expand Down

0 comments on commit fe76b1a

Please sign in to comment.