fix breakout panel bg and simplify sort

This commit is contained in:
Chad Pilkey 2019-09-27 22:33:18 +00:00
parent 9f360a3181
commit 6a4cd316ed
2 changed files with 1 additions and 5 deletions

View File

@ -71,10 +71,6 @@ class BreakoutRoom extends PureComponent {
return -1;
} if (aName > bName) {
return 1;
} if (a.userId > b.userId) {
return -1;
} if (a.userId < b.userId) {
return 1;
}
return 0;

View File

@ -4,7 +4,7 @@
@import "/imports/ui/components/user-list/user-list-content/styles";
.panel {
@include scrollbox-vertical(var(--user-list-bg));
@include scrollbox-vertical();
background-color: #fff;
padding: var(--md-padding-x);
display: flex;