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