您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_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. }