From 335d2434f0e6820f00746814732a0c781c10f6c7 Mon Sep 17 00:00:00 2001 From: Roman Volosovskyi Date: Thu, 14 May 2020 10:59:11 +0300 Subject: [PATCH] [#9661] Fix overlapping on puk code screen --- src/status_im/ui/screens/hardwallet/pin/styles.cljs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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})