diff --git a/src/status_im/ui/screens/hardwallet/pin/styles.cljs b/src/status_im/ui/screens/hardwallet/pin/styles.cljs index cb05f1688e..9bed3b82ad 100644 --- a/src/status_im/ui/screens/hardwallet/pin/styles.cljs +++ b/src/status_im/ui/screens/hardwallet/pin/styles.cljs @@ -7,8 +7,8 @@ :flex-direction :column :justify-content :space-between}) -(styles/defn error-container [small-screen?] - {:height (if small-screen? 18 22) +(defn error-container [small-screen?] + {:height (when small-screen? 18) :margin-top (if small-screen? 14 10) :margin-bottom (if small-screen? 10 0)}) @@ -82,4 +82,4 @@ (def numpad-button-text {:font-size 22 - :color colors/blue}) \ No newline at end of file + :color colors/blue})