From 10aea2acbb316d6af944d9116ea4192b9379791e Mon Sep 17 00:00:00 2001 From: RheingoldRiver <18037011+RheingoldRiver@users.noreply.github.com> Date: Wed, 4 Oct 2023 17:34:07 -0500 Subject: [PATCH] adjust unused pentominoes display --- src/components/PentominoDisplay/PentominoDisplay.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PentominoDisplay/PentominoDisplay.tsx b/src/components/PentominoDisplay/PentominoDisplay.tsx index faacf04..c739f90 100644 --- a/src/components/PentominoDisplay/PentominoDisplay.tsx +++ b/src/components/PentominoDisplay/PentominoDisplay.tsx @@ -39,7 +39,7 @@ export const PentominoDisplay = ({ } if (cell !== 0) return { - class: found === false ? "" : "opacity-30", + class: clsx(found === false ? "shadow-[0px_0px_1px_1px] shadow-gray-30" : "opacity-30"), style: color, }; return { class: "", style: "" };