better background, enlarge cards on hover

This commit is contained in:
Gavin McDonald
2025-04-10 14:27:22 -04:00
parent ffa9c5a9a6
commit 1734eec436
4 changed files with 2 additions and 4 deletions

View File

@@ -52,8 +52,6 @@ export default function GamePage() {
return cards.length ? (
<main className="min-h-screen flex flex-col items-center justify-center gap-4 bg-[url('/img/table3.png')] bg-cover bg-center">
<h1 className="text-2xl font-bold">Game ID: {gameID}</h1>
<div className="grid grid-cols-3 grid-rows-3 gap-8 w-fit mx-auto">
{Array.from({ length: 9 }).map((_, i) => {
const cardIndex = [1, 3, 4, 5, 7].indexOf(i);

View File

@@ -11,7 +11,7 @@ export default function Home() {
};
return (
<main className="min-h-screen flex items-center justify-center">
<main className="min-h-screen flex items-center justify-center bg-[url('/img/table3.png')] bg-cover bg-center">
<button
onClick={handleCreateGame}
className="bg-blue-600 text-white text-lg px-6 py-3 rounded-xl shadow hover:bg-blue-700 transition"

View File

@@ -10,7 +10,7 @@ type CardProps = {
export default function Card({ card: { aria, url }, flipAction }: CardProps) {
return (
<div
className="h-[21vh] w-[15vh] flex items-center justify-center cursor-pointer"
className="h-[21vh] w-[15vh] flex items-center justify-center cursor-pointer transform transition-transform duration-200 hover:scale-150 relative z-0 hover:z-10"
onClick={flipAction}
>
<img

BIN
public/img/table3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB