detail.less 784 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .cardContainer {
  2. width: 100%;
  3. padding: 20px 20px;
  4. background-color: white;
  5. .collapseLabel {
  6. width: 100%;
  7. :global {
  8. .ant-collapse-header {
  9. justify-content: center;
  10. flex-direction: row-reverse;
  11. .ant-collapse-header-text {
  12. flex: unset;
  13. margin-inline-end: unset;
  14. }
  15. }
  16. }
  17. .workOrderCard {
  18. margin-bottom: 20px;
  19. padding: 20px 10px;
  20. border-radius: 8px;
  21. background-color: #e5effa;
  22. display: flex;
  23. align-items: center;
  24. .leftInfo {
  25. width: 80%;
  26. }
  27. .rightButton {
  28. flex: auto;
  29. color: #5697e4;
  30. text-align: center;
  31. display: flex;
  32. justify-content: center;
  33. align-items: center;
  34. }
  35. }
  36. }
  37. }