Skip to content

Commit

Permalink
changed gradient
Browse files Browse the repository at this point in the history
  • Loading branch information
DanL2015 committed Jun 17, 2024
1 parent ca02b96 commit b321a5b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
14 changes: 5 additions & 9 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,14 @@
}

.bgDark {
background: rgb(13, 17, 23);
background: radial-gradient(
ellipse at 80% 50%,
rgba(13, 17, 23, 1) 0%,
rgba(33, 38, 45, 1) 62%,
rgba(73, 108, 140, 1) 100%
);
background-color: #2b4162;
background-image: linear-gradient(315deg, #2b4162 0%, #12100e 74%);
z-index: -10;
}

.bg {
background-image: linear-gradient(315deg, #89929b 0%, #ecf2f8 74%);
.bgLight {
background-color: #f9fcff;
background-image: linear-gradient(147deg, #f9fcff 0%, #dee4ea 74%);
z-index: -10;
}

Expand Down
4 changes: 2 additions & 2 deletions src/app/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export const metadata = {

export default function RootLayout({ children }) {
return (
<html lang="en" suppressHydrationWarning>
<body className="bg-b5 dark:bg-b0 bg dark:bgDark">
<html lang="en" suppressHydrationWarning className="min-h-full">
<body className="bg-b5 dark:bg-b0 bgLight dark:bgDark">
<Providers>
<Navbar></Navbar>
<Caret></Caret>
Expand Down

0 comments on commit b321a5b

Please sign in to comment.