From 4a26baf66b1337035b2346a71cbece7fb6f0826a Mon Sep 17 00:00:00 2001 From: Jacob Pihl Date: Wed, 20 Dec 2023 08:24:49 +0100 Subject: [PATCH] Only show scrollbar when content is overflowing overflow: scroll, will always show a scrollbar, which is very ugly --- src/stories/Library/Modals/modal-loan/modal-loan.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stories/Library/Modals/modal-loan/modal-loan.scss b/src/stories/Library/Modals/modal-loan/modal-loan.scss index a8854aa4d..c81f3fae5 100644 --- a/src/stories/Library/Modals/modal-loan/modal-loan.scss +++ b/src/stories/Library/Modals/modal-loan/modal-loan.scss @@ -6,7 +6,7 @@ .modal-loan__container { width: 100%; - overflow: scroll; + overflow-y: auto; } .modal-loan__header {