diff --git a/src/quo/components/inputs/input/style.cljs b/src/quo/components/inputs/input/style.cljs index 5755c936df..6ff41e3f9d 100644 --- a/src/quo/components/inputs/input/style.cljs +++ b/src/quo/components/inputs/input/style.cljs @@ -1,7 +1,8 @@ (ns quo.components.inputs.input.style (:require [quo.components.markdown.text :as text] - [quo.foundations.colors :as colors])) + [quo.foundations.colors :as colors] + [react-native.platform :as platform])) (defn variants-colors [blur? theme] @@ -97,9 +98,12 @@ (assoc base-props :text-align-vertical :top :line-height 22) - (assoc base-props - :height (if small? 30 38) - :line-height nil)))) + (cond-> base-props + :always + (assoc :height (if small? 30 38) + :line-height nil) + platform/ios? + (assoc :padding-top (+ padding 2)))))) (defn right-icon-touchable-area [small?] diff --git a/translations/en.json b/translations/en.json index 90c60393cf..5e53d05956 100644 --- a/translations/en.json +++ b/translations/en.json @@ -606,7 +606,7 @@ "skip": "Skip", "password-placeholder": "Password...", "confirm-password-placeholder": "Confirm your password...", - "ens-or-chat-key": "ENS or Chat key", + "ens-or-chat-key": "ENS or Chatkey", "user-found": "User found", "enter-pin": "Enter 6-digit passcode", "enter-puk-code": "Enter PUK code",