1
0
Fork 0
firefox/browser/extensions/newtab/content-src/components/Notifications/_Notifications.scss
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

23 lines
381 B
SCSS

.notification-wrapper {
position: fixed;
inset-inline-end: var(--space-medium);
inset-block-end: var(--space-medium);
z-index: 10;
}
.notification-feed-item {
position: relative;
animation: toastSlideInSlideOut 4s ease-in-out forwards;
}
@keyframes toastSlideInSlideOut {
0%, 100% {
opacity: 0;
top: 50%;
}
15%, 85% {
opacity: 1;
top: 0;
}
}