From d823bfd71c92d97a8a1d6c5c1812ee9a533e704b Mon Sep 17 00:00:00 2001 From: Goran Jovic Date: Fri, 5 Oct 2018 12:06:58 +0200 Subject: [PATCH] bug #6135 - made place for recovery phrase error tooltip on desktop Signed-off-by: Goran Jovic --- src/status_im/ui/screens/accounts/recover/styles.cljs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/status_im/ui/screens/accounts/recover/styles.cljs b/src/status_im/ui/screens/accounts/recover/styles.cljs index 8752acb4ea..5257d43664 100644 --- a/src/status_im/ui/screens/accounts/recover/styles.cljs +++ b/src/status_im/ui/screens/accounts/recover/styles.cljs @@ -1,12 +1,14 @@ (ns status-im.ui.screens.accounts.recover.styles + (:require-macros [status-im.utils.styles :refer [defstyle]]) (:require [status-im.ui.components.colors :as colors])) (def screen-container {:flex 1 :background-color colors/white}) -(def inputs-container - {:margin 16}) +(defstyle inputs-container + {:margin 16 + :desktop {:padding-top 15}}) (def password-input {:margin-top 10})