[#9661] Fix overlapping on puk code screen

This commit is contained in:
Roman Volosovskyi 2020-05-14 10:59:11 +03:00
parent e26f5452b9
commit 335d2434f0
No known key found for this signature in database
GPG Key ID: 0238A4B5ECEE70DE
1 changed files with 3 additions and 3 deletions

View File

@ -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})
:color colors/blue})