fix: ensure avatars don't squish depending on sidebar width
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful

This commit is contained in:
Twig 2025-07-18 08:05:11 +02:00
parent ad7a6b5bb6
commit 3a65cfd10a
No known key found for this signature in database
2 changed files with 8 additions and 5 deletions

View file

@ -34,8 +34,10 @@ const props = defineProps<{
} }
.user-avatar { .user-avatar {
width: 2.3em; min-width: 2.3em;
height: 2.3em; max-width: 2.3em;
min-width: 2.3em;
max-height: 2.3em;
} }
.user-display-name { .user-display-name {

View file

@ -134,9 +134,10 @@ function handleMemberClick(member: GuildMemberResponse) {
} }
.member-avatar { .member-avatar {
height: 2.3em; min-width: 2.3em;
width: 2.3em; max-width: 2.3em;
border-radius: 50%; min-width: 2.3em;
max-height: 2.3em;
} }
.member-display-name { .member-display-name {