From 528df179d9abcf81542785390446e16d9c88834d Mon Sep 17 00:00:00 2001 From: Alexander Date: Wed, 9 Aug 2023 16:06:28 +0200 Subject: [PATCH] "Your name" input field is dispositioned to the bottom on Create profile screen (Android) (#16923) --- src/quo2/components/inputs/profile_input/style.cljs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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