style: tighten chat compose spacing

This commit is contained in:
Peter Steinberger
2025-12-22 19:01:58 +01:00
parent c872f37aae
commit 3b134c8fef
2 changed files with 36 additions and 4 deletions

View File

@@ -304,6 +304,11 @@
background: rgba(0, 0, 0, 0.2);
}
.chat-messages {
margin-top: 8px;
padding: 6px;
}
.msg {
border: 1px solid var(--border);
background: rgba(0, 0, 0, 0.2);
@@ -341,6 +346,33 @@
gap: 10px;
}
.chat-compose {
margin-top: 8px;
grid-template-columns: minmax(0, 1fr) auto;
align-items: end;
gap: 8px;
}
.chat-compose__field {
gap: 4px;
}
.chat-compose__field textarea {
min-height: 120px;
padding: 8px 10px;
}
.chat-compose__actions {
justify-content: flex-end;
align-self: end;
}
@media (max-width: 900px) {
.chat-compose {
grid-template-columns: 1fr;
}
}
.qr-wrap {
margin-top: 12px;
border-radius: 14px;