diff options
| author | taehoon <th.dev91@gmail.com> | 2019-02-02 15:50:25 -0500 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-02-02 15:50:25 -0500 |
| commit | 4833f79cc2f2c43cdd8d185bf0b2cf17dc117b59 (patch) | |
| tree | 2033ca1eee7cc9bb5cc04056b158d92a0036003b /src/components/user_card/user_card.vue | |
| parent | 0b66a43a83ebe64cf2fbfefac84e66fcd94093d7 (diff) | |
Fix class ordering issues related to avatar
Diffstat (limited to 'src/components/user_card/user_card.vue')
| -rw-r--r-- | src/components/user_card/user_card.vue | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue index 4f512974..57a44dfb 100644 --- a/src/components/user_card/user_card.vue +++ b/src/components/user_card/user_card.vue @@ -1,7 +1,7 @@ <template> <div class="card"> <a href="#"> - <UserAvatar @click.prevent="toggleUserExpanded" :src="user.profile_image_url"/> + <UserAvatar :compact="true" @click.prevent="toggleUserExpanded" :src="user.profile_image_url"/> </a> <div class="usercard" v-if="userExpanded"> <user-card-content :user="user" :switcher="false"></user-card-content> @@ -70,10 +70,6 @@ .avatar { margin-top: 0.2em; - width:32px; - height: 32px; - border-radius: $fallback--avatarAltRadius; - border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius); } } |
