diff --git a/src/styles/_view_lineup.scss b/src/styles/_view_lineup.scss index 0badac0f7..419666667 100644 --- a/src/styles/_view_lineup.scss +++ b/src/styles/_view_lineup.scss @@ -7,7 +7,8 @@ flex-direction: row; height: 100%; - .lu-row, .le-tr { + .lu-row, + .le-tr { line-height: 1; } @@ -302,12 +303,22 @@ $lu_assets: '~lineupjs/src/assets'; bottom: 0; right: 0; left: 0; - overflow-y: auto; // make tab pane scrollable for long content - } + overflow: auto; + + &.active { + display: flex; + flex-direction: column; + } - // default = LineUp Ranking Configuration tab - .tab-pane.default { - overflow-y: hidden; // disable scrolling of tab pane, as only the column filters are scrollable + // Add scrollbar to SidePanel higher in the node tree + .lu-side-panel-main { + overflow-y: auto; + overflow-x: hidden; + + .lu-side-panel-ranking-main { + overflow: visible; + } + } } }