diff --git a/src/quo2/components/inputs/profile_input/style.cljs b/src/quo2/components/inputs/profile_input/style.cljs index 958b1cc7c9..ed8b201257 100644 --- a/src/quo2/components/inputs/profile_input/style.cljs +++ b/src/quo2/components/inputs/profile_input/style.cljs @@ -1,14 +1,14 @@ (ns quo2.components.inputs.profile-input.style - (:require [quo2.foundations.colors :as colors])) + (:require [react-native.platform :as platform] + [quo2.foundations.colors :as colors])) (defn container [customization-color] {:background-color (colors/custom-color customization-color 50 40) :padding-horizontal 12 :padding-top 12 - :padding-bottom 10 + :padding-bottom (if platform/ios? 10 0) :border-radius 16 - :height 102 :flex 1}) (def button