index.less 938 B

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