finish hangman v1

This commit is contained in:
2020-04-04 18:56:03 +02:00
parent 79c656c7ea
commit 6bfc0bb064
9 changed files with 318 additions and 158 deletions

20
resources/sass/pages/games.scss vendored Normal file
View File

@@ -0,0 +1,20 @@
.game-index {
display: flex;
flex-wrap: wrap;
margin-top: 3rem;
}
.game-index-item {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 18rem;
height: 18rem;
background-color: $light;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}