minor fixes and improvments
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user