Skip to content

Commit

Permalink
Add 4 pt space between title and subtitle in select storage screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaliy Vlasov committed Jun 14, 2019
1 parent 977b136 commit 1c1b08d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/status_im/ui/screens/intro/views.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@
[react/view {:style {:margin-horizontal 16 :flex 1}}
[react/text {:style (assoc styles/wizard-text :font-weight "500" :color colors/black :text-align :left)}
(i18n/label title)]
[react/view {:style {:min-height 4 :max-height 4}}]
[react/text {:style (assoc styles/wizard-text :text-align :left)}
(i18n/label desc)]]
[radio/radio selected?]]]]))
Expand All @@ -164,7 +165,7 @@
:justify-content :flex-end
;; We have to align top storage entry
;; with top account entry on the previous screen
:margin-bottom (+ (- 300 224) (if (< view-height 600)
:margin-bottom (+ (- 300 232) (if (< view-height 600)
-20
(/ view-height 12)))}}
[storage-entry (first storage-types) selected-storage-type]
Expand Down

0 comments on commit 1c1b08d

Please sign in to comment.