diff --git a/src/quo/components/community/style.cljs b/src/quo/components/community/style.cljs index 89e88292c4..cce2e1ce2f 100644 --- a/src/quo/components/community/style.cljs +++ b/src/quo/components/community/style.cljs @@ -102,7 +102,7 @@ :right 8}) (def token-tag-spacing - {:margin-top 10 + {:padding-top 10 :margin-right 8}) (defn token-row @@ -117,11 +117,12 @@ (defn token-row-or-text [padding? theme] (merge - {:margin-top 4 - :color (colors/theme-colors - colors/neutral-50 - colors/neutral-40 - theme)} + {:padding-top 4 + :margin-bottom -2 + :color (colors/theme-colors + colors/neutral-50 + colors/neutral-40 + theme)} (when padding? {:padding-left 12}))) diff --git a/src/status_im/contexts/communities/overview/style.cljs b/src/status_im/contexts/communities/overview/style.cljs index b93cebdffc..be2a301697 100644 --- a/src/status_im/contexts/communities/overview/style.cljs +++ b/src/status_im/contexts/communities/overview/style.cljs @@ -11,7 +11,7 @@ (def community-tag-container {:padding-horizontal screen-horizontal-padding :margin-horizontal (- screen-horizontal-padding) - :margin-bottom 20}) + :margin-bottom 16}) (def community-content-container {:padding-horizontal screen-horizontal-padding}) @@ -64,4 +64,5 @@ {:border-radius 16 :border-color (colors/theme-colors colors/neutral-20 colors/neutral-80) :border-width 1 - :padding-top 10}) + :padding-top 10 + :margin-bottom 106}) diff --git a/src/status_im/contexts/communities/overview/view.cljs b/src/status_im/contexts/communities/overview/view.cljs index c5d27e1fed..ca897d6ce4 100644 --- a/src/status_im/contexts/communities/overview/view.cljs +++ b/src/status_im/contexts/communities/overview/view.cljs @@ -161,7 +161,7 @@ (i18n/label :t/you-eligible-to-join-as {:role highest-role-text}) (i18n/label :t/you-not-eligible-to-join))] [info-button]] - [quo/text {:style {:padding-horizontal 12 :padding-bottom 18} :size :paragraph-2} + [quo/text {:style {:padding-horizontal 12 :padding-bottom 6} :size :paragraph-2} (if can-request-access? (i18n/label :t/you-hodl) (i18n/label :t/you-must-hold))] @@ -175,7 +175,7 @@ #(rf/dispatch [:open-modal :community-requests-to-join {:id id}])) :accessibility-label :join-community-button :customization-color color - :container-style {:margin-horizontal 12 :margin-top 12 :margin-bottom 12} + :container-style {:margin-horizontal 12 :margin-top 8 :margin-bottom 12} :disabled? (not can-request-access?) :icon-left (if can-request-access? :i/unlocked :i/locked)} (i18n/label :t/request-to-join)]])))