feat: implement tenant branding system and global toast notification service

This commit is contained in:
2026-07-01 11:54:11 -03:00
parent 2764201ca0
commit 0363280ede
17 changed files with 294 additions and 5 deletions

View File

@@ -0,0 +1,28 @@
.toast-container {
z-index: 1500;
display: flex;
flex-direction: column;
gap: 0.5rem;
pointer-events: none;
.toast {
pointer-events: auto;
min-width: 300px;
max-width: 450px;
border-radius: 8px;
animation: toast-slide-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -4px rgba(0, 0, 0, 0.15) !important;
transition: all 0.2s ease-in-out;
}
}
@keyframes toast-slide-in {
from {
opacity: 0;
transform: translateY(-20px) scale(0.95);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}