Game Logic done

This commit is contained in:
2021-10-19 16:20:26 -03:00
parent 9425e27bd3
commit 9f9cf73bf3
13 changed files with 154 additions and 30 deletions

33
public/sass/_word.scss Normal file
View File

@@ -0,0 +1,33 @@
.word {
@include bodyFont();
font-size: 50pt;
display: flex;
align-items: center;
max-width: 70vw;
display: flex;
flex-wrap: wrap;
.letter {
width: 3vw;
height: 70pt;
margin-left: 2vw;
border-bottom: 5px solid #000;
display: flex;
justify-content: center;
align-items: flex-end;
}
.counter {
font-size: 40pt;
font-family:Arial, Helvetica, sans-serif;
margin-left: 3vw;
}
}