From f482da088008c589290d07f89b654e448e1b2937 Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Wed, 30 Jun 2021 18:14:14 +0300 Subject: [PATCH] Fixing Catalog columns alignment (#3222) * Fixing VirtualList scrollbar style Signed-off-by: Alex Andreev * Fix VirtualList styling in logs Signed-off-by: Alex Andreev * Fixing integration tests Signed-off-by: Alex Andreev * Fixing log element selector Signed-off-by: Alex Andreev * Not using css modules Signed-off-by: Alex Andreev * Removing unused prop from VirtualList Signed-off-by: Alex Andreev --- src/renderer/components/virtual-list/virtual-list.scss | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/renderer/components/virtual-list/virtual-list.scss b/src/renderer/components/virtual-list/virtual-list.scss index 9f26247a44..3953be4756 100644 --- a/src/renderer/components/virtual-list/virtual-list.scss +++ b/src/renderer/components/virtual-list/virtual-list.scss @@ -20,9 +20,8 @@ */ .VirtualList { - overflow: hidden; - - > .list { + > div > .list { + /* Render scrollbar in content area, preventing to occupy extra space */ overflow-y: overlay!important; } -} \ No newline at end of file +}