Skip to content

Commit

Permalink
fix: address input multiline (#19962)
Browse files Browse the repository at this point in the history
fix: address input multiline (#19962)
  • Loading branch information
OmarBasem committed May 16, 2024
1 parent c05be0f commit 649a316
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/quo/components/inputs/address_input/style.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,18 @@
(merge {:padding-horizontal 20
:padding-top 8
:padding-bottom 16
:height 48
:flex-direction :row
:align-items :flex-start}
container-style))

(def buttons-container
{:flex-direction :row
:align-items :center
:padding-top (when platform/android? 2)})
:align-items :flex-start})

(def clear-icon-container
{:justify-content :center
{:justify-content :flex-start
:align-items :center
:padding-top (if platform/ios? 6 2)
:padding-top (when platform/ios? 4)
:height 24
:width 20})

Expand All @@ -33,9 +31,10 @@
nil)
:flex 1
:color (colors/theme-colors colors/neutral-100 colors/white theme)
:margin-top (if platform/ios? 0 -4)
:margin-top -4
:margin-right 8
:height (if platform/ios? 24 40)))
:max-height 50
:padding 0))

(defn accessory-button
[blur? theme]
Expand Down
1 change: 1 addition & 0 deletions src/quo/components/inputs/address_input/view.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
:auto-capitalize :none
:auto-correct false
:spell-check false
:multiline true
:keyboard-appearance theme
:on-focus on-focus
:on-blur on-blur
Expand Down

0 comments on commit 649a316

Please sign in to comment.