index.less 790 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. @import "~antd/lib/style/themes/default.less";
  2. .result {
  3. text-align: center;
  4. width: 72%;
  5. margin: 0 auto;
  6. .icon {
  7. font-size: 72px;
  8. line-height: 72px;
  9. margin-bottom: 24px;
  10. & > .success {
  11. color: @success-color;
  12. }
  13. & > .error {
  14. color: @error-color;
  15. }
  16. }
  17. .title {
  18. font-size: 24px;
  19. color: @heading-color;
  20. font-weight: 500;
  21. line-height: 32px;
  22. margin-bottom: 16px;
  23. }
  24. .description {
  25. font-size: 14px;
  26. line-height: 22px;
  27. color: @text-color-secondary;
  28. margin-bottom: 24px;
  29. }
  30. .extra {
  31. background: #fafafa;
  32. padding: 24px 40px;
  33. border-radius: @border-radius-sm;
  34. text-align: left;
  35. }
  36. .actions {
  37. margin-top: 32px;
  38. button:not(:last-child) {
  39. margin-right: 8px;
  40. }
  41. }
  42. }