Fix Hand css.

Implement placing from hand.
This commit is contained in:
2024-10-25 23:46:14 -05:00
parent 7d47fafea0
commit 550942281b
4 changed files with 105 additions and 119 deletions

View File

@@ -59,17 +59,17 @@
}
.board .tile {
display: grid;
place-content: center;
aspect-ratio: var(--ratio);
background-color: beige;
transition: filter linear 0.25s;
}
.tile {
display: grid;
place-content: center;
aspect-ratio: var(--ratio);
background-color: beige;
transition: filter linear 0.25s;
}
.board .tile[data-selected] {
filter: invert(0.8);
}
.tile[data-selected] {
filter: invert(0.8);
}
.ruler {
color: beige;
@@ -110,4 +110,4 @@
grid-template-rows: 3rem;
place-items: center start;
padding: 0.5rem;
}
}