fixed dark border around the community logo on community page

This PR removes the dark border around the community logo on communities page 
reproducible only when the user has not yet joined the community
This commit is contained in:
John Ngei 2024-01-12 18:37:23 +01:00 committed by GitHub
parent e3ab270933
commit 6aa981d4a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 8 deletions

View File

@ -58,15 +58,16 @@
(def picture-border-width 4)
(defn display-picture-container
[animation]
[animation theme]
(reanimated/apply-animations-to-style
{:transform [{:scale animation}]}
{:border-radius picture-diameter
:border-width picture-border-width
:border-color (colors/theme-colors colors/white colors/neutral-95)
:position :absolute
:top (- (+ picture-radius picture-border-width))
:left (+ (/ picture-radius 2) picture-border-width)}))
{:border-radius picture-diameter
:border-width picture-border-width
:border-color (colors/theme-colors colors/white colors/neutral-95 theme)
:background-color (colors/theme-colors colors/white colors/neutral-95 theme)
:position :absolute
:top (- (+ picture-radius picture-border-width))
:left (+ (/ picture-radius 2) picture-border-width)}))
(defn display-picture
[theme]

View File

@ -89,7 +89,7 @@
js/undefined)
[scroll-height])
[reanimated/view
{:style (style/display-picture-container animation)}
{:style (style/display-picture-container animation theme)}
[rn/image
{:source cover
:style (style/display-picture theme)}]]))