Styled the admin button and added the button for come back to the game

This commit is contained in:
2021-10-21 22:38:19 -03:00
parent ba88fd2eb9
commit b76d35344d
5 changed files with 43 additions and 4 deletions

View File

@@ -27,6 +27,11 @@ header h2 {
margin-top: 0.5vh;
cursor: pointer;
}
header .redirect-button {
position: absolute;
left: 5%;
width: 10vw;
}
@media (max-width: 991.98px) {
header h2 {
@@ -41,6 +46,12 @@ header h2 {
transition: 0.4s ease-in-out;
}
}
@media (max-width: 576px) {
header .redirect-button {
width: 20vw;
position: initial;
}
}
.game-container {
display: flex;
justify-content: space-around;