- add button (same as login in home page) in lobby page with menu
This commit is contained in:
Kum1ta
2024-09-17 22:47:52 +02:00
parent 9491d795bf
commit 965b27426e
5 changed files with 86 additions and 6 deletions

View File

@ -304,4 +304,23 @@ body {
transform: translateX(-20%);
opacity: 0;
}
}
}
#topBarLobby #loginButton {
font-size: 20px;
background-color: white;
height: 40px;
width: 130px;
color: black;
text-align: center;
line-height: 40px;
margin-left: auto;
transition: background-color 0.3s ease;
}
#topBarLobby #loginButton:hover {
background-color: transparent;
color: white;
cursor: pointer;
}