"Your name" input field is dispositioned to the bottom on Create profile screen (Android) (#16923)
This commit is contained in:
parent
6b4b9d99f4
commit
528df179d9
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue