Skip to content

Commit

Permalink
Merge pull request #8637 from RocketChat/create-channel-scroll
Browse files Browse the repository at this point in the history
[FIX] Missing scroll at create channel page
  • Loading branch information
rodrigok committed Oct 25, 2017
2 parents 4badc52 + cbdde6e commit ed35507
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
.create-channel {
display: flex;
flex-direction: column;

animation-name: fadeIn;
animation-duration: 1s;

Expand All @@ -25,6 +28,10 @@
font-size: var(--create-channel-description-text-size);
}

&__content {
overflow-y: auto;
}

&__switches {
display: flex;
flex-wrap: wrap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
&__wrapper {
position: relative;

display: flex;

width: var(--modal-wrapper-width);
margin: var(--modal-wrapper-margin) 0;
}
Expand Down

0 comments on commit ed35507

Please sign in to comment.