feat(frontend): add guild join flow, members panel, and channel-create member modal

This commit is contained in:
nav
2026-05-14 16:58:12 +00:00
parent 75fee7c725
commit 40540ab8a6
5 changed files with 159 additions and 35 deletions

View File

@@ -152,6 +152,31 @@ a:hover {
gap: 8px;
}
.modal-backdrop {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.45);
display: grid;
place-items: center;
z-index: 30;
}
.modal-card {
width: min(560px, 92vw);
max-height: 80vh;
overflow: auto;
background: var(--bg);
border: 1px solid var(--border);
border-radius: 12px;
padding: 14px;
}
.modal-list {
display: grid;
gap: 8px;
margin-top: 8px;
}
.list-btn {
width: 100%;
text-align: left;