Files
AdGuardHome/client_v2/src/components/Toasts/Toast.pcss
Ildar Kamalov f7357be494 ADG-10293
2025-08-09 21:00:55 +03:00

32 lines
435 B
Plaintext

.toasts {
position: fixed;
right: 16px;
width: 100%;
max-width: 345px;
bottom: 24px;
z-index: 105;
@media (min-width: 768px) {
right: 24px;
max-width: 400px;
}
}
.toast-enter {
opacity: 0.01;
}
.toast-enter-active {
opacity: 1;
transition: all 0.3s ease-out;
}
.toast-exit {
opacity: 1;
}
.toast-exit-active {
opacity: 0.01;
transition: all 0.3s ease-out;
}