Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Glazelf/DQM3-db
Browse files Browse the repository at this point in the history
  • Loading branch information
Glazelf committed Sep 29, 2023
2 parents 131f5cb + 064a949 commit 3907380
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
18 changes: 7 additions & 11 deletions src/app/globals.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-end-rgb: 255, 255, 255;
}

@media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 23,92,50;
--background-start-rgb: 0, 0, 0;
--background-end-rgb: 0, 0, 0;
}
--foreground-rgb: 24, 79, 156;
--background-start-rgb: 24, 79, 156;
--background-end-rgb: 23, 92, 50;
}

body {
height: 100vh;
border: 5px solid #CD9801;
border-radius: 5px;
margin: 0px 8px 0px 8px;
color: rgb(var(--foreground-rgb));
background: linear-gradient(
to bottom,
Expand Down
4 changes: 3 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import Monster from '../components/Monster';

export default function Home() {
return (
<Monster parent='' />
<div className="home-container">
<Monster parent='' />
</div>
)
}

0 comments on commit 3907380

Please sign in to comment.