From 2d2f1c23544d40c2d59294b4e093f65be504a74d Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Tue, 23 Apr 2019 09:22:13 +0200 Subject: [PATCH] fix: set overflow to auto to only show scrollbar when needed(#15) --- src/components/ItemSelector/styles/SelectedItems.style.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ItemSelector/styles/SelectedItems.style.js b/src/components/ItemSelector/styles/SelectedItems.style.js index ca5625291..2776cb72a 100644 --- a/src/components/ItemSelector/styles/SelectedItems.style.js +++ b/src/components/ItemSelector/styles/SelectedItems.style.js @@ -7,7 +7,7 @@ export default css` height: 455px; list-style: none; margin: 0px; - overflow-y: scroll; + overflow-y: auto; padding-left: 0px; user-select: none; }