Skip to content

Commit d758a03

Browse files
authored
Merge pull request #225 from huamanraj/fix/login-page-font
fix: login page font fixed
2 parents 1494cfc + b70ed11 commit d758a03

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed
Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
1-
export default function RootLayout({
1+
export default function LoginLayout({
22
children,
33
}: Readonly<{
44
children: React.ReactNode;
55
}>) {
66
return (
7-
<html lang="en" suppressHydrationWarning>
8-
<body
9-
className={`antialiased bg-background overflow-hidden min-h-screen h-full flex flex-col`}
10-
>
11-
<div className="flex-1 relative h-full overflow-hidden">{children}</div>
12-
</body>
13-
</html>
7+
<div className="flex-1 relative h-full overflow-hidden">{children}</div>
148
);
159
}

apps/web/src/app/(main)/login/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import SignInPage from "@/components/login/SignInPage";
33

44
export default function Home() {
55
return (
6-
<div className="flex flex-col h-screen w-full justify-center items-center relative bg-[#101010]">
6+
<div className="flex flex-col h-screen w-full justify-center items-center relative bg-surface-primary">
77
<div className=" z-10">
88
<Suspense fallback={<div>Loading...</div>}>
99
<SignInPage></SignInPage>

0 commit comments

Comments
 (0)