minor fixes and improvments

This commit is contained in:
2026-03-10 03:27:11 +01:00
parent 61612b52d3
commit 506a824401
5 changed files with 81 additions and 12 deletions

View File

@@ -16,6 +16,11 @@
box-shadow: 0 20px 60px var(--shadow-color);
}
.chat-page {
width: min(100%, 95vw);
margin-inline: auto;
}
.back-link {
color: var(--link-color);
text-decoration: none;
@@ -297,6 +302,23 @@
display: block;
}
.bubble-system-status {
display: inline-flex;
align-items: center;
gap: 0.7rem;
}
.bubble-spinner {
width: 1rem;
height: 1rem;
flex: 0 0 auto;
border: 0.15rem solid currentColor;
border-right-color: transparent;
border-radius: 999px;
opacity: 0.8;
animation: bubble-spin 700ms linear infinite;
}
.composer {
display: grid;
grid-template-columns: auto minmax(0, 1fr) auto;
@@ -467,6 +489,12 @@
}
}
@keyframes bubble-spin {
to {
transform: rotate(360deg);
}
}
@media (max-width: 767.98px) {
.chat-layout {
grid-template-columns: 1fr;