Files
Hangman-game-with-React/public/sass/control-panel/_message.scss
2021-10-22 22:30:58 -03:00

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);
}
}