From ffdafb95dee32fc45bdf7c9b9e9951be6147918c Mon Sep 17 00:00:00 2001 From: cubic Date: Tue, 15 Mar 2022 17:38:29 +0800 Subject: [PATCH] fix(Drawer): disable horizonal scrollbar (github #56) github #56 --- www/view/src/components/Drawer.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/view/src/components/Drawer.js b/www/view/src/components/Drawer.js index ae2b253..4981ef1 100755 --- a/www/view/src/components/Drawer.js +++ b/www/view/src/components/Drawer.js @@ -31,7 +31,8 @@ const styles = theme => ({ drawerPaper: { position: 'relative', boxSizing: 'border-box', - width: '100%' + width: '100%', + overflowX: 'hidden' }, drawerExpandControl: { position: 'absolute',