Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#19195] fix: communities design issues #19819

Merged
merged 1 commit into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/status_im/common/scroll_page/view.cljs
Expand Up @@ -85,7 +85,7 @@
y (reanimated/use-shared-value scroll-height)
animation (reanimated/interpolate y
input-range
[1.2 0.5]
[1 0.5]
{:extrapolateLeft "clamp"
:extrapolateRight "clamp"})]
(rn/use-effect #(do
Expand Down
3 changes: 2 additions & 1 deletion src/status_im/contexts/communities/overview/view.cljs
Expand Up @@ -131,6 +131,7 @@
#(rf/dispatch [:open-modal :community-requests-to-join {:id id}]))
:accessibility-label :show-request-to-join-screen-button
:customization-color color
:container-style {:margin-bottom 12}
:icon-left :i/communities}
(i18n/label :t/request-to-join)])

Expand Down Expand Up @@ -329,7 +330,7 @@
(fn [id joined name images]
(let [theme (quo.theme/use-theme)
cover {:uri (get-in images [:banner :uri])}
logo {:uri (get-in images [:thumbnail :uri])}
logo {:uri (get-in images [:large :uri])}
collapsed? (and initial-joined? joined)
first-category-height (->> @categories-heights
vals
Expand Down