uLinkShortener/src/components/ui/Toast.module.css
2025-12-09 01:51:46 +01:00

63 lines
1,023 B
CSS

.toastContainer {
position: fixed;
top: 20px;
right: 20px;
z-index: 9999;
display: flex;
flex-direction: column;
gap: 10px;
max-width: 350px;
}
.toast {
padding: 12px 20px;
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
font-size: 0.9rem;
cursor: pointer;
opacity: 0;
transform: translateY(-20px);
transition:
opacity 0.3s,
transform 0.3s;
}
.toast.error {
background-color: var(--error);
color: white;
border-left: 4px solid #c62828;
}
.toast.success {
background-color: var(--success);
color: white;
border-left: 4px solid #2e7d32;
}
.toast.info {
background-color: var(--accent);
color: white;
border-left: 4px solid var(--accent-hover);
}
.toast.warning {
background-color: var(--warning);
color: white;
border-left: 4px solid #f57c00;
}
.toastShow {
opacity: 1;
transform: translateY(0);
animation: fadeOut 2s forwards;
animation-delay: 1s;
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}