mirror of
https://github.com/strapi/strapi.git
synced 2025-08-05 15:29:04 +00:00
25 lines
373 B
SCSS
25 lines
373 B
SCSS
/**
|
|
* Notifications animation
|
|
**/
|
|
|
|
.notification-enter {
|
|
opacity: 0.01;
|
|
right: -45rem;
|
|
}
|
|
|
|
.notification-enter.notification-enter-active {
|
|
opacity: 1;
|
|
transition: all 400ms ease-in;
|
|
right: 0;
|
|
}
|
|
|
|
.notification-leave {
|
|
opacity: 1;
|
|
right: 0;
|
|
}
|
|
|
|
.notification-leave.notification-leave-active {
|
|
opacity: 0.01;
|
|
transition: all 400ms ease-in;
|
|
right: -45rem;
|
|
} |