You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_notifications.scss 490B

1234567891011121314151617181920212223
  1. .notification-appear, .notification-enter {
  2. opacity: 0;
  3. position: relative;
  4. left: -200px;
  5. transition: all .2s !important; // !important needed to overwrite atlaskit default style
  6. &-active {
  7. opacity: 1;
  8. left: 0;
  9. }
  10. }
  11. .notification-exit {
  12. opacity: 1;
  13. position: relative;
  14. left: 0;
  15. transition: all .2s !important; // !important needed to overwrite atlaskit default style
  16. &-active {
  17. opacity: 0;
  18. left: -200px;
  19. }
  20. }