From 76b4f5eef43e8b939472bbb5dc13afb0b3087fe8 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sat, 19 Nov 2022 12:56:57 -0800 Subject: [PATCH] Remove forced scrollbars in modal + round corners --- web/styles/ant-overrides.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/styles/ant-overrides.scss b/web/styles/ant-overrides.scss index 2c3cb21d2..5f024f14a 100644 --- a/web/styles/ant-overrides.scss +++ b/web/styles/ant-overrides.scss @@ -119,7 +119,8 @@ DROPDOWN color: var(--theme-color-components-modal-header-text); } .ant-modal-body { - overflow: scroll; + overflow: auto; + border-radius: 0 0 var(--theme-rounded-corners) var(--theme-rounded-corners); } .ant-modal { color: var(--theme-color-components-text-on-light);