[#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 :flex-direction :column
:justify-content :space-between}) :justify-content :space-between})
(styles/defn error-container [small-screen?] (defn error-container [small-screen?]
{:height (if small-screen? 18 22) {:height (when small-screen? 18)
:margin-top (if small-screen? 14 10) :margin-top (if small-screen? 14 10)
:margin-bottom (if small-screen? 10 0)}) :margin-bottom (if small-screen? 10 0)})
@ -82,4 +82,4 @@
(def numpad-button-text (def numpad-button-text
{:font-size 22 {:font-size 22
:color colors/blue}) :color colors/blue})