From e4db23b0a9c385390939525a593bab81593f9c3a Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 27 Mar 2023 23:00:33 +0200 Subject: [PATCH] Center input value within the field (#15472) --- src/quo2/components/inputs/input/style.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quo2/components/inputs/input/style.cljs b/src/quo2/components/inputs/input/style.cljs index 81cf923b3c..83d687075d 100644 --- a/src/quo2/components/inputs/input/style.cljs +++ b/src/quo2/components/inputs/input/style.cljs @@ -91,7 +91,7 @@ :color (:text colors-by-status))] (if multiple-lines? (assoc base-props :text-align-vertical :top) - (assoc base-props :height (if small? 30 38))))) + (assoc base-props :height (if small? 30 38) :line-height nil)))) (defn right-icon-touchable-area [small?]