This commit is contained in:
2026-06-30 10:43:11 +07:00
parent d9c8e3930b
commit 6e284e66fa
10 changed files with 247 additions and 51 deletions

View File

@@ -3371,6 +3371,33 @@ input:checked + .slider:before {
font-family: var(--font-sans);
}
.chat-toast {
position: absolute;
right: 0;
bottom: 72px;
width: 280px;
padding: 0.7rem 0.85rem;
border-radius: 10px;
background: #1e293b;
color: #fff;
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
display: flex;
flex-direction: column;
gap: 0.25rem;
font-size: 0.82rem;
animation: chat-toast-in 0.25s ease;
}
.chat-toast strong {
font-size: 0.78rem;
color: #93c5fd;
}
@keyframes chat-toast-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
.chat-fab {
position: relative;
width: 56px;