Skip to content

Commit

Permalink
fix(avatar): restrict image fallback size
Browse files Browse the repository at this point in the history
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
  • Loading branch information
Antreesy committed Mar 20, 2024
1 parent a350dcd commit d091484
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/AvatarWrapper/AvatarWrapper.vue
Expand Up @@ -224,6 +224,8 @@ export default {
top: 0;
width: var(--avatar-size);
height: var(--avatar-size);
max-height: var(--avatar-size);
max-width: var(--avatar-size);
line-height: var(--avatar-size);
font-size: calc(var(--avatar-size) / 2);
border-radius: 50%;
Expand Down

0 comments on commit d091484

Please sign in to comment.