diff options
| author | Henry Jameson <me@hjkos.com> | 2020-08-18 23:57:42 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-08-18 23:57:42 +0300 |
| commit | 815f230ac7ace5a1507afae91bafa57589a77522 (patch) | |
| tree | 9893cd00ef1b97dd596adfe291b8b3346dd41c56 /src/components/user_avatar/user_avatar.vue | |
| parent | 7de78b1401cf8454026afd0a2ba2578356173bcd (diff) | |
fixed some issues related to user avatar
Diffstat (limited to 'src/components/user_avatar/user_avatar.vue')
| -rw-r--r-- | src/components/user_avatar/user_avatar.vue | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/user_avatar/user_avatar.vue b/src/components/user_avatar/user_avatar.vue index 3545b801..e4e4127c 100644 --- a/src/components/user_avatar/user_avatar.vue +++ b/src/components/user_avatar/user_avatar.vue @@ -1,6 +1,6 @@ <template> <StillImage - class="avatar" + class="Avatar" :alt="user.screen_name" :title="user.screen_name" :src="imgSrc(user.profile_image_url_original)" @@ -13,7 +13,9 @@ <style lang="scss"> @import '../../_variables.scss'; -.avatar.still-image { +.Avatar { + --still-image-label-visibility: hidden; + width: 48px; height: 48px; box-shadow: var(--avatarStatusShadow); |
