mirror of https://github.com/zulip/zulip.git
Enable scrolling on user presences on mobile.
The overflow was set to "hidden". I'm unsure of how this was even working on desktop, but the #user-presences div certainly would not scroll on mobile. This enables mobile scrolling.
This commit is contained in:
parent
850efdebdd
commit
463f69fd1b
|
@ -13,7 +13,7 @@
|
|||
#group-pms {
|
||||
list-style-position: inside; /* Draw the bullets inside our box */
|
||||
margin-left: 0;
|
||||
overflow: hidden;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#user_presences:hover,
|
||||
|
|
Loading…
Reference in New Issue