Skip to content

Commit

Permalink
Merge pull request kodadot#10528 from hassnian/issue-10527
Browse files Browse the repository at this point in the history
fix: Profile followed by images small improvements
  • Loading branch information
prury authored Jun 26, 2024
2 parents fdae89c + 086d788 commit ca14112
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions components/profile/ProfileDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -208,13 +208,17 @@
</span>
<NeoButton variant="text" no-shadow @click="onFollowersClick">
<div class="flex -space-x-3">
<NuxtImg
<div
v-for="(follower, index) in followers?.followers"
:key="index"
:src="follower.image"
alt="follower avatar"
class="w-8 h-8 rounded-full border object-cover"
:style="{ zIndex: 3 - index }" />
:style="{ zIndex: 3 - index }"
class="w-8 h-8 flex-shrink-0 rounded-full border">
<BasicImage
:src="follower.image"
custom-class="object-cover"
alt="follower avatar"
rounded />
</div>
</div>
</NeoButton>
Expand Down

0 comments on commit ca14112

Please sign in to comment.