Merge pull request #2587 from matrix-org/bwindels/fixcustomtagslayout

Fix: make sure custom tag scroller doesn't overflow parent
pull/21833/head
Bruno Windels 2019-02-07 18:49:00 +00:00 committed by GitHub
commit 90768ee3b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -21,7 +21,11 @@ limitations under the License.
.mx_CustomRoomTagPanel {
background-color: $tagpanel-bg-color;
max-height: 40%;
max-height: 40vh;
}
.mx_CustomRoomTagPanel_scroller {
max-height: inherit;
}
.mx_CustomRoomTagPanel .mx_AccessibleButton {