選択できるのは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. }