fix: ensure avatars don't squish depending on sidebar width
This commit is contained in:
parent
ad7a6b5bb6
commit
3a65cfd10a
2 changed files with 8 additions and 5 deletions
|
@ -34,8 +34,10 @@ const props = defineProps<{
|
|||
}
|
||||
|
||||
.user-avatar {
|
||||
width: 2.3em;
|
||||
height: 2.3em;
|
||||
min-width: 2.3em;
|
||||
max-width: 2.3em;
|
||||
min-width: 2.3em;
|
||||
max-height: 2.3em;
|
||||
}
|
||||
|
||||
.user-display-name {
|
||||
|
|
|
@ -134,9 +134,10 @@ function handleMemberClick(member: GuildMemberResponse) {
|
|||
}
|
||||
|
||||
.member-avatar {
|
||||
height: 2.3em;
|
||||
width: 2.3em;
|
||||
border-radius: 50%;
|
||||
min-width: 2.3em;
|
||||
max-width: 2.3em;
|
||||
min-width: 2.3em;
|
||||
max-height: 2.3em;
|
||||
}
|
||||
|
||||
.member-display-name {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue