Skip to content
Snippets Groups Projects
Unverified Commit 2e7a2aed authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #6282 from BobakOftadeh/userlist-scroll-fix

Fixed user list scroll
parents 92683f74 98d81363
No related branches found
No related tags found
No related merge requests found
...@@ -121,6 +121,11 @@ ...@@ -121,6 +121,11 @@
color: var(--color-gray-light); color: var(--color-gray-light);
} }
.userListColumn {
@extend %flex-column;
min-height: 0;
}
.enter, .enter,
.appear { .appear {
opacity: 0.01; opacity: 0.01;
......
...@@ -12,7 +12,8 @@ ...@@ -12,7 +12,8 @@
.container{ .container{
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: .3rem; margin-bottom: var(--lg-padding-y);
margin-top: var(--sm-padding-x);
} }
.scrollableList { .scrollableList {
......
...@@ -175,7 +175,7 @@ class UserParticipants extends Component { ...@@ -175,7 +175,7 @@ class UserParticipants extends Component {
} = this.props; } = this.props;
return ( return (
<div> <div className={styles.userListColumn}>
{ {
!compact ? !compact ?
<div className={styles.container}> <div className={styles.container}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment