Skip to content

Commit

Permalink
Merge pull request #174 from daithihearn/ui-enhancements-4
Browse files Browse the repository at this point in the history
Making Icons Bigger
  • Loading branch information
daithihearn authored Jul 6, 2023
2 parents ee0bacf + 2fcf2af commit f0bb7fe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "7.2.1",
"version": "7.2.2",
"description": "React frontend for the Cards 110",
"author": "Daithi Hearn",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"short_name": "Cards 110",
"name": "Cards 110",
"version": "7.2.1",
"version": "7.2.2",
"icons": [
{
"src": "./assets/favicon.png",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Leaderboard/DoublesLeaderboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const DoublesLeaderboard = () => {
</Grid>

<Grid item xs={3} sx={{ textAlign: "right" }}>
{item.winner ? <VictoryIcon /> : null}
{item.winner ? <VictoryIcon fontSize="large" /> : null}
</Grid>
</Grid>
))}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Leaderboard/SinglesLeaderboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const SinglesLeaderboard = () => {
</Grid>

<Grid item xs={4} sx={{ textAlign: "right" }}>
{item.winner ? <VictoryIcon /> : null}
{item.winner ? <VictoryIcon fontSize="large" /> : null}
{isGameActive && item.previousCard ? (
<img
alt={item.previousCard}
Expand Down

0 comments on commit f0bb7fe

Please sign in to comment.