Skip to content

Commit 6d528eb

Browse files
committed
fix width and height
1 parent ee21c69 commit 6d528eb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/pages/Play/GameInterface.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ const GameInterface = (props: GameInterfaceProps) => {
216216
alignItems: "center",
217217
padding: "1rem",
218218
fontFamily: "Arial, sans-serif",
219-
minWidth: "80vw",
220-
minHeight: "80vh",
219+
width: "80vw",
220+
height: "80vh",
221221
gap: "1rem",
222222
backgroundColor: "white",
223223
borderRadius: "1rem",

src/pages/Play/components/HandStatus.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function HandStatus(props: HandStatusProps) {
1818
>
1919
<div
2020
style={{
21-
paddingTop: "0.5rem",
21+
paddingTop: "1rem",
2222
fontWeight: "500",
2323
paddingLeft: "1rem",
2424
fontSize: "1.5rem",

0 commit comments

Comments
 (0)