Files
Hangman-game-with-React/public/sass/_loading.scss
2021-10-26 14:09:41 -03:00

30 lines
373 B
SCSS

.loading {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100vh;
margin: 0;
padding: 0;
background-color: #fff;
display: flex;
align-items: center;
justify-content: center;
img {
width: 50px;
height: 50px;
}
}
@media (max-width: 991.98px) {
.loading {
height: 150vh;
}
}