Skip to content

Commit

Permalink
[FIX] Add users popup list is broke (RocketChat#10409)
Browse files Browse the repository at this point in the history
[FIX] Autocomplete list when inviting a user was partial hidden
  • Loading branch information
karlprieb authored and rodrigok committed Apr 16, 2018
1 parent 29cbbef commit a982399
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
&__content {
overflow: auto;

height: 100%;

padding: var(--default-padding);

& .js-back {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@

width: 100%;

padding: 0 4px;

&__list {
overflow-y: auto;

width: 100%;
max-height: 312px;

padding: 1rem;

border-radius: var(--popup-list-border-radius);
background-color: var(--popup-list-background);
box-shadow: 0 0 2px 0 rgba(47, 52, 61, 0.08), 0 0 12px 0 rgba(47, 52, 61, 0.12);
box-shadow: 0 0 2px 0 rgba(47, 52, 61, 0.08), 0 0 8px 0 rgba(47, 52, 61, 0.12);
}

&__item {
Expand Down

0 comments on commit a982399

Please sign in to comment.