Skip to content

Commit

Permalink
Fix minor bugs in divider not working (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekzhang authored Dec 22, 2024
1 parent c2bf172 commit 7b5bdcc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/components/Game.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,15 @@ function Game({
gamePadding +
lineSpacing / 2
}px`,
borderLeftWidth: "1px",
}
: {
top: `${
(isHorizontal ? cardWidth : cardHeight) +
gamePadding +
lineSpacing / 2
}px`,
borderTopWidth: "1px",
};

return (
Expand Down
2 changes: 1 addition & 1 deletion src/pages/GamePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ function GamePage() {
xs={12}
sm={8}
md={6}
order={{ xs: 3, sm: 1 }}
order={{ xs: 1, sm: 2 }}
position="relative"
className={classes.mainColumn}
>
Expand Down

0 comments on commit 7b5bdcc

Please sign in to comment.