From ef7001becd37c3c50f050c91df2a260a6dbf8a2b Mon Sep 17 00:00:00 2001 From: leizhe Date: Fri, 19 Nov 2021 13:03:10 +0800 Subject: [PATCH] revert panel padding since it breaks some other panels --- src/main/frontend/ui.cljs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/frontend/ui.cljs b/src/main/frontend/ui.cljs index 674d27791..53fbb44d9 100644 --- a/src/main/frontend/ui.cljs +++ b/src/main/frontend/ui.cljs @@ -512,9 +512,9 @@ :style (if (or (util/mobile?) (mobile-util/is-native-platform?)) {:padding-top "2em" - :padding-left "0.5em" - :padding-right "0.5em" - :padding-bottom "1em"} + :padding-left "1em" + :padding-right "1em" + :padding-bottom "2em"} {:padding "2em"})} (modal-panel-content panel-content close-fn)])])