We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1668fb5 commit e0b0e4bCopy full SHA for e0b0e4b
src/pages/Play/components/HandTiles.tsx
@@ -18,11 +18,9 @@ function HandTiles(props: HandTilesProps) {
18
<>
19
<div
20
style={{
21
- margin: "auto",
22
display: "flex",
23
- gap: "1rem",
24
flexDirection: "row",
25
- alignItems: "center",
+ justifyContent: "center",
26
}}
27
>
28
<ul
@@ -53,7 +51,7 @@ function HandTiles(props: HandTilesProps) {
53
51
height="70"
54
52
onClick={() => props.tsumogiri()} // クリックイベントでtsumogiri関数を実行
55
onKeyDown={() => props.tsumogiri()} // 意味あるのか分からない
56
- style={{ cursor: "pointer" }} // クリックできることを示すためにポインターに変更
+ style={{ cursor: "pointer", transform: "translate(0.5rem, 1.5rem)" }} // クリックできることを示すためにポインターに変更
57
/>
58
</div>
59
</>
0 commit comments