Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"packageManager": "pnpm@10.11.1",
"scripts": {
"prChecks": "pnpm lint && pnpm buildRepo",
"dev": "next dev --turbopack",
"dev": "next dev",
"buildRepo": "pnpm rmBuild && pnpm build",
"rmBuild": "pnpm -r exec rm -rf out",
"build": "next build",
Expand Down
4 changes: 2 additions & 2 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
--glass-bg: rgba(255, 255, 255, 0.15);
--glass-border: rgba(255, 255, 255, 0.25);
--glass-shadow: rgba(0, 0, 0, 0.15);
--play-background: rgb(175, 175, 175);
--play-background: rgba(200, 200, 200, 0.8);
}

/* Dark Theme */
Expand Down Expand Up @@ -138,7 +138,7 @@
--glass-bg: rgba(0, 0, 0, 0.2);
--glass-border: rgba(255, 255, 255, 0.1);
--glass-shadow: rgba(0, 0, 0, 0.3);
--play-background: hsla(0, 0%, 51%, 1);
--play-background: rgba(200, 200, 200, 0.8);
}

@layer utilities {
Expand Down
Loading