mirror of
https://github.com/FranP-code/Hangman-game-with-React.git
synced 2025-10-13 00:42:32 +00:00
26 lines
522 B
SCSS
26 lines
522 B
SCSS
.letter-input-container {
|
|
height: 30vh;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
#letter-input {
|
|
|
|
$size: 10vw;
|
|
|
|
width: $size;
|
|
height: $size;
|
|
|
|
text-align: center;
|
|
font-size: calc(#{$size} - 20px); //CREDITS: https://stackoverflow.com/a/52364513
|
|
|
|
border-radius: 5px;
|
|
border: none;
|
|
outline: none;
|
|
|
|
border: 2px solid #f87665;
|
|
background-color: #303030cd;
|
|
color: #ffffff5f;
|
|
}
|
|
} |