- add bar/goal selector on all gamemode in lobby page
    - fix three js warn on lobby page
    - fix history on profil page
This commit is contained in:
Kum1ta
2024-10-01 00:46:41 +02:00
parent 3ed6224d5c
commit 54da3fb923
9 changed files with 77 additions and 26 deletions

View File

@ -239,7 +239,7 @@ body {
align-items: center;
}
#bar{
.barSelection{
margin: 25px;
width: 250px;
height: 250px;
@ -247,11 +247,11 @@ body {
transition: transform 0.3s ease;
}
#bar:hover{
.barSelection:hover{
transform: scale(1.05);
}
#goal{
.goalSelection{
margin: 25px;
width: 250px;
height: 250px;
@ -259,7 +259,7 @@ body {
transition: transform 0.3s ease;
}
#goal:hover{
.goalSelection:hover{
transform: scale(1.05);
}

View File

@ -112,16 +112,20 @@
text-align: center;
}
#profil .scroll-match {
#profil .history #scroll-match {
overflow-y: auto;
height: 100%;
width: 100%;
height: calc(100% - 60px);
display: flex;
flex-direction: column;
align-items: center;
}
#profil .history {
background-color: white;
width: 48%;
height: 42vh;
padding: 20px;
/* padding: 20px; */
text-align: center;
}
@ -131,6 +135,7 @@
margin-top: 20px;
background-color: #E74040;
height: 110px;
width: 90%;
padding: 15px;
padding-inline: 40px;
transition: 0.3s ease;