From ef6c3219cb8140d3f49df88247c6d8ca863dd3bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Fri, 6 Oct 2023 17:32:50 +0300 Subject: [PATCH] ScrollPanel: overflow css property changed as auto --- components/lib/scrollpanel/style/ScrollPanelStyle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/scrollpanel/style/ScrollPanelStyle.js b/components/lib/scrollpanel/style/ScrollPanelStyle.js index 8cb578fd6..a979cbf59 100644 --- a/components/lib/scrollpanel/style/ScrollPanelStyle.js +++ b/components/lib/scrollpanel/style/ScrollPanelStyle.js @@ -16,7 +16,7 @@ const css = ` width: calc(100% + 18px); padding: 0 18px 18px 0; position: relative; - overflow: scroll; + overflow: auto; box-sizing: border-box; scrollbar-width: none; }