Skip to content

Commit e21b997

Browse files
committed
maybe complete
1 parent 955702d commit e21b997

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/pages/Play/GameInterface.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ const GameInterface = (props: GameInterfaceProps) => {
258258
gridTemplateColumns: "50% 50%",
259259
gridTemplateRows: "50% 50%",
260260
width: "70rem",
261-
height: "25rem",
261+
height: "22rem",
262262
gap: "0.1rem",
263263
}}
264264
>

src/pages/Play/components/DiscardArea.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function DiscardArea(props: DiscardAreaProps) {
1515
return (
1616
<div
1717
style={{
18-
height: "20.5rem",
18+
height: "90%",
1919
borderRadius: "1rem",
2020
boxShadow: "1px 1px 2px rgba(0, 0, 0, 0.2)",
2121
}}

src/pages/Play/components/DisplaySwitch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ type DisplaySwitchProps = {
66
};
77
export default function DisplaySwitch(props: DisplaySwitchProps) {
88
return (
9-
<div style={{ height: "2.8rem" }}>
9+
<div style={{ height: "10%" }}>
1010
{props.display === "sutehai" ? (
1111
<div
1212
style={{

src/pages/Play/components/HandStatus.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function HandStatus(props: HandStatusProps) {
77
return (
88
<div
99
style={{
10-
paddingBottom: "3rem",
10+
height: "100%",
1111
display: "flex",
1212
gap: "1rem",
1313
flexDirection: "column",

src/pages/Play/components/ValidTiles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default function ValidTiles(props: ValidTilesProps) {
1515
style={{
1616
borderRadius: "1rem",
1717
boxShadow: "1px 1px 2px rgba(0, 0, 0, 0.2)",
18-
height: "20.5rem",
18+
height: "90%",
1919
overflow: "hidden",
2020
}}
2121
>

src/pages/Play/components/WaitingTiles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function WaitingTiles(props: WaitingTilesProps) {
1717
return (
1818
<div
1919
style={{
20-
paddingBottom: "6rem",
20+
height: "100%",
2121
borderRadius: "1rem",
2222
boxShadow: "1px 1px 2px rgba(0, 0, 0, 0.2)",
2323
}}

0 commit comments

Comments
 (0)