Skip to content

Commit

Permalink
Merge pull request #56 from JosephShall/main
Browse files Browse the repository at this point in the history
Fix Profile Image's aspect ratio in Credits Page
  • Loading branch information
nesimtunc authored Feb 4, 2022
2 parents 7ff364d + 762500a commit a3232a8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pages/credits.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div v-for="(user, index) in users" :key="index" :style="index > 0 ? 'margin-top: 62px' : null">
<div style="display: flex">
<div style="position: relative">
<div class="profile-background" :style="`background-color: ${colors[index]}`"></div>
<div class="profile-background" :style="`background-color: transparent`"></div>
<img :src="user.avatarUrl" class="avatar" />
</div>
<div style="margin-left: 40px">
Expand Down Expand Up @@ -108,7 +108,6 @@ export default {
top: 10px;
left: -10px;
width: 112px;
height: 154px;
border-radius: 12px;
}
.header-title {
Expand Down

0 comments on commit a3232a8

Please sign in to comment.