fix lobby not scrolling
This commit is contained in:
parent
1ee346f9e7
commit
076cdef003
1 changed files with 4 additions and 3 deletions
|
@ -42,7 +42,7 @@ body {
|
||||||
.lobby_wrapper {
|
.lobby_wrapper {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
position: relative;
|
position: relative;
|
||||||
;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lobby {
|
.lobby {
|
||||||
|
@ -50,8 +50,9 @@ body {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
align-self: flex-start;
|
align-self: flex-start;
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
max-height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input_container {
|
.input_container {
|
||||||
|
@ -81,7 +82,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.map_select {
|
.map_select {
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
flex-shrink: 5;
|
flex-shrink: 5;
|
||||||
width: 75%;
|
width: 75%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
Loading…
Reference in a new issue