Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/talldle/app/globals.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@import "tailwindcss";

:root {
--background: #242424;
--talldle-red: #F00D1E;
--background: #101010;
--talldle-red: #F41520;
--light-accent: #525252; /* rgb(255, 255, 255, 0.1) */
--dark-accent: #383838; /* rgb(255, 255, 255, 0.1) */
}
Expand Down
2 changes: 1 addition & 1 deletion src/talldle/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default function Home() {
</div>
</section>
<section className="grid justify-center mb-[5vh]">
<span tabIndex={0} onClick={() => !gameState.isGameOver ? submitGuess() : showEndGameCard()} onKeyDown={(e) => (e.key === "Enter") && (!gameState.isGameOver ? submitGuess() : showEndGameCard())} className="mg-auto font-bold px-8 sm:px-12 py-2 sm:py-3 text-xl sm:text-2xl bg-[var(--talldle-red)] text-[var(--background)] hover:cursor-pointer focus:bg-red-500 hover:bg-red-500">
<span tabIndex={0} onClick={() => !gameState.isGameOver ? submitGuess() : showEndGameCard()} onKeyDown={(e) => (e.key === "Enter") && (!gameState.isGameOver ? submitGuess() : showEndGameCard())} className="mg-auto font-bold px-8 sm:px-12 py-2 sm:py-3 text-xl sm:text-2xl bg-[var(--talldle-red)] text-[var(--background)] hover:cursor-pointer hover:brightness-75">
Enter Guess
</span>
</section>
Expand Down