From c60ea5f25f0ca80f5a44131b83f8ccd3ce48f021 Mon Sep 17 00:00:00 2001 From: Jack Westbrook Date: Fri, 16 Oct 2020 12:13:07 +0200 Subject: [PATCH] fix: for graph size not taking up full height or width (cherry picked from commit 448114f649356aabda6f685d00cb54e5414ecb71) --- public/sass/components/_panel_graph.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/sass/components/_panel_graph.scss b/public/sass/components/_panel_graph.scss index c2b7b38f8ff..80ea878574d 100644 --- a/public/sass/components/_panel_graph.scss +++ b/public/sass/components/_panel_graph.scss @@ -8,8 +8,9 @@ flex-direction: row; .graph-legend { - flex: 1 1 10px; + flex: 0 1 10px; max-height: 100%; + overflow-y: initial; } .graph-legend-series { @@ -46,7 +47,7 @@ .graph-legend { display: flex; - flex: 1 1 auto; + flex: 0 1 auto; max-height: 35%; margin: 0; text-align: center;