From 8f332e3cd45814a181a24c884edf050936928755 Mon Sep 17 00:00:00 2001 From: vben Date: Thu, 31 Dec 2020 21:44:11 +0800 Subject: [PATCH] fix(modal): do not hide the scroll bar when opening the pop-up window #151 --- src/design/index.less | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/design/index.less b/src/design/index.less index 482a1b98..3d3b9363 100644 --- a/src/design/index.less +++ b/src/design/index.less @@ -39,7 +39,8 @@ html, body { width: 100%; height: 100%; - overflow-x: hidden; + overflow: visible !important; + overflow-x: hidden !important; &.color-weak { filter: invert(80%); -- GitLab