notificationStyle.js 451 B

1234567891011121314151617181920
  1. /**
  2. * @author oldj
  3. * @blog https://oldj.net
  4. */
  5. 'use strict'
  6. // 参考:https://github.com/igorprado/react-notification-system/blob/master/src/styles.js
  7. export default {
  8. NotificationItem: { // Override the notification item
  9. DefaultStyle: { // Applied to every notification, regardless of the notification level
  10. 'border-radius': 0
  11. },
  12. success: { // Applied only to the success notification item
  13. color: 'red'
  14. }
  15. }
  16. }