Make cell change color on corner hover.

This commit is contained in:
2018-06-03 13:09:20 -07:00
parent e1ecf2e0ac
commit 7190ea2ded
2 changed files with 20 additions and 23 deletions

View File

@@ -33,14 +33,14 @@ body {
border-radius: 10px;
}
.black-player .overlay {
&:hover {
.black-player {
.board-cell:hover .overlay {
background-color: black;
}
}
.white-player .overlay {
&:hover {
.white-player {
.board-cell:hover .overlay {
background-color: white;
}
}