Skip to content

Commit 3d92a4c

Browse files
authored
fix #685: updating background color to solid green (#686)
1 parent 1873863 commit 3d92a4c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/globals.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
}
7272
}
7373
@layer components {
74-
.bg-gradient {
75-
@apply bg-gradient-to-b from-[#244B40] from-[60%] to-[#395A50] to-[60%];
74+
.bg-solid-green {
75+
@apply bg-[#244B40];
7676
}
7777
}

app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const RootLayout = ({
5555
</Script>
5656
</head>
5757
<body
58-
className={`${geistSans.variable} ${geistMono.variable} antialiased bg-gradient`}
58+
className={`${geistSans.variable} ${geistMono.variable} antialiased bg-solid-green`}
5959
>
6060
<AuthContextProvider>
6161
<SnowOverlayProvider>

0 commit comments

Comments
 (0)