Skip to content

Commit 29be3a8

Browse files
committed
token requirements margin issues
1 parent e9bbb34 commit 29be3a8

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/status_im/contexts/communities/actions/community_options/view.cljs

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@
3939
:right-icon :i/chevron-right
4040
:accessibility-label :view-token-gating
4141
:on-press #(rf/dispatch [:show-bottom-sheet
42-
{:content (fn [] [token-gating/token-requirements id])}])
42+
{:content (fn [] [token-gating/token-requirements
43+
id])
44+
:padding-bottom-override 16}])
4345
:label (i18n/label :t/view-token-gating)})
4446

4547
(defn edit-shared-addresses

src/status_im/contexts/communities/actions/token_gating/view.cljs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
[]
1010
(fn [id]
1111
(let [{:keys [can-request-access? tokens]} (rf/sub [:community/token-gated-overview id])]
12-
[rn/view {:style {:padding-horizontal 12}}
12+
[rn/view {:style {:padding-horizontal 20}}
1313
[quo/text {:weight :medium}
1414
(if can-request-access?
1515
(i18n/label :t/you-eligible-to-join)
1616
(i18n/label :t/you-not-eligible-to-join))]
17-
[quo/text {:style {:padding-bottom 18} :size :paragraph-2}
17+
[quo/text {:style {:padding-bottom 8} :size :paragraph-2}
1818
(if can-request-access?
1919
(i18n/label :t/you-hodl)
2020
(i18n/label :t/you-must-hold))]

0 commit comments

Comments
 (0)