Fix legend overflow bug on dashboard vis (#29948)

This commit is contained in:
Joe Reuter 2019-02-06 11:44:58 +01:00 committed by GitHub
parent 0942332b0a
commit 1f2fe4d25b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
.visualize {
display: flex;
flex: 1 1 100%;
overflow-x: hidden;
overflow: hidden;
}
// SASSTODO: Too risky to change to BEM naming
@ -21,6 +21,7 @@
* that it disappears entirely.
*/
.visChart__container {
min-height: 0;
flex: 1 1 0; /* 1 */
display: flex;
flex-direction: row;