Skip to content

Commit 659ad0d

Browse files
committed
Removing opacity on cards
1 parent a928b48 commit 659ad0d

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frontend",
3-
"version": "5.5.1",
3+
"version": "5.5.2",
44
"description": "React frontend for the Cards 110",
55
"author": "Daithi Hearn",
66
"license": "MIT",

public/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"short_name": "Cards 110",
33
"name": "Cards 110",
4-
"version": "5.5.1",
4+
"version": "5.5.2",
55
"icons": [
66
{
77
"src": "./assets/favicon.png",

src/components/Game/PlayerCard.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,7 @@ const PlayerCard: React.FC<PlayerRowI> = ({ player }) => {
7171
src={`/cards/thumbnails/${
7272
isCurrentPlayer ? "yellow" : "blank_grey"
7373
}_back.png`}
74-
className={`img-center thumbnail_size ${
75-
isCurrentPlayer ? "" : "transparent"
76-
}`}
74+
className={`img-center thumbnail_size`}
7775
/>
7876

7977
{isDealer ? (

0 commit comments

Comments
 (0)