feat: change members list back to using flex display
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful

This commit is contained in:
SauceyRed 2025-06-06 01:56:15 +02:00
parent 3899843a7c
commit d49d533724
Signed by: sauceyred
GPG key ID: 270B096EF6E9A462

View file

@ -96,15 +96,17 @@ function toggleInvitePopup(e: Event) {
}
#members-list {
display: grid;
grid-template-columns: min-content 1fr;
gap: 2dvh;
align-items: center;
display: flex;
flex-direction: column;
overflow-y: scroll;
padding-left: 1dvw;
padding-right: 1dvw;
margin-top: 1dvh;
}
.member-item {
display: contents;
display: grid;
grid-template-columns: 2dvw 1fr;
margin-top: .5em;
margin-bottom: .5em;
gap: 1em;