rootLayout.less 853 B

1234567891011121314151617181920212223242526272829303132333435
  1. .root-layout {
  2. width: 100%;
  3. height: 100%;
  4. }
  5. .confirm-box {
  6. .ant-modal-body {
  7. padding: 0;
  8. .confirm-body {
  9. display: flex;
  10. flex-direction: column;
  11. text-align: center;
  12. .confirm-icon {
  13. .anticon {
  14. height: 50px;
  15. line-height: 50px;
  16. font-size: 32px;
  17. color: #FF4D4F;
  18. svg {
  19. margin-top: 10px;
  20. }
  21. }
  22. }
  23. .confirm-label {
  24. height: 50px;
  25. line-height: 50px;
  26. font-size: 24px;
  27. font-weight: bold;
  28. }
  29. .confirm-button {
  30. height: 48px;
  31. line-height: 48px;
  32. }
  33. }
  34. }
  35. }