index.less 663 B

123456789101112131415161718192021222324252627282930313233
  1. @import '../style/var';
  2. .van-notify {
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. box-sizing: border-box;
  7. padding: @notify-padding;
  8. color: @notify-text-color;
  9. font-size: @notify-font-size;
  10. line-height: @notify-line-height;
  11. // allow newline charactor
  12. white-space: pre-wrap;
  13. text-align: center;
  14. word-wrap: break-word;
  15. &--primary {
  16. background-color: @notify-primary-background-color;
  17. }
  18. &--success {
  19. background-color: @notify-success-background-color;
  20. }
  21. &--danger {
  22. background-color: @notify-danger-background-color;
  23. }
  24. &--warning {
  25. background-color: @notify-warning-background-color;
  26. }
  27. }