refactor: move MemberList and GuildSidebar out of client.vue

This commit is contained in:
Twig 2025-08-13 20:43:50 +02:00
parent d60259074d
commit 2a43f2b678
Signed by: twig
SSH key fingerprint: SHA256:nBO+OwpTkd8LYhe38PIqdxmDvkIg9Vw2EbrRZM97dkU
4 changed files with 157 additions and 227 deletions

View file

@ -32,7 +32,13 @@ function hideModalPopup() {
<style>
.member-item {
position: relative;
display: flex;
margin-top: .5em;
margin-bottom: .5em;
gap: .5em;
align-items: center;
text-align: left;
cursor: pointer;
}
.member-avatar {
@ -41,4 +47,9 @@ function hideModalPopup() {
min-width: 2.3em;
max-width: 2.3em;
}
.member-display-name {
overflow: hidden;
text-overflow: ellipsis;
}
</style>