mirror of
https://github.com/FranP-code/Hangman-game-with-React.git
synced 2025-10-13 00:42:32 +00:00
24 lines
360 B
SCSS
24 lines
360 B
SCSS
.message {
|
|
|
|
padding: 4vh 5vw;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
@include titleFont();
|
|
@include titleNormalize();
|
|
font-size: 22pt;
|
|
|
|
color: #fff;
|
|
|
|
&.error {
|
|
|
|
background-color: rgb(255, 78, 78);
|
|
}
|
|
|
|
&.sucess {
|
|
|
|
background-color: rgb(128, 255, 78);
|
|
}
|
|
} |