Fix flex issue on firefox

remotes/1693176582716663532/tmp_refs/heads/watchparty
Outrun Colors 2022-09-27 17:10:44 -05:00
parent b2b63ee23e
commit c69640c4f3
2 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{
"name": "chat",
"version": "0.1.20",
"version": "0.1.21",
"main": "./src/index.tsx",
"license": "MIT",
"dependencies": {

View File

@ -1,12 +1,6 @@
.UserList {
padding: 1rem;
flex: 1;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: auto;
}
.UserList-heading {
@ -15,10 +9,16 @@
justify-content: space-between;
}
.UserList-heading h5 {
margin-right: 2rem;
}
.UserList ul {
max-height: calc(var(--vh, 1vh) * 50);
overflow: auto;
}
.UserList ul::-webkit-scrollbar {
display: none;
}