Skip to content

Commit

Permalink
adjust unused pentominoes display
Browse files Browse the repository at this point in the history
  • Loading branch information
RheingoldRiver committed Oct 4, 2023
1 parent 2b574e4 commit 10aea2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PentominoDisplay/PentominoDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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: "" };
Expand Down

0 comments on commit 10aea2a

Please sign in to comment.