Skip to content

Commit ab48490

Browse files
committed
feat: made the styling for the login window better
1 parent db11882 commit ab48490

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

src/app/login/[[...rest]]/page.tsx

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,20 @@ import { SignIn } from "@clerk/nextjs";
22

33
export default function LoginPage() {
44
return (
5-
<div className="flex justify-center items-center h-screen">
6-
<SignIn />
5+
<div
6+
style={{
7+
display: "flex",
8+
justifyContent: "center",
9+
alignItems: "center",
10+
height: "100vh",
11+
}}
12+
>
13+
{/* This inner div scales the component up by 20% (1.2).
14+
You can change 1.2 to 1.3 or 1.5 if you want it even bigger.
15+
*/}
16+
<div style={{ transform: "scale(1.2)" }}>
17+
<SignIn path="/login" />
18+
</div>
719
</div>
820
);
921
}

0 commit comments

Comments
 (0)