mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-21 22:50:59 -05:00
fix(voice channel): Fix overflow and scrolling (#574)
This commit is contained in:
parent
3f9e6fc2e2
commit
777d06f469
1 changed files with 3 additions and 0 deletions
|
@ -56,11 +56,14 @@ const VoiceBase = styled.div`
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
|
overflow-y: scroll;
|
||||||
|
|
||||||
.participants {
|
.participants {
|
||||||
margin: 40px 20px;
|
margin: 40px 20px;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-flow: row wrap;
|
||||||
gap: 16px;
|
gap: 16px;
|
||||||
|
|
||||||
div:hover img {
|
div:hover img {
|
||||||
|
|
Loading…
Reference in a new issue