index.module.scss 621 B

123456789101112131415161718192021222324252627282930
  1. .A5story {
  2. position: relative;
  3. :global {
  4. .A5top {
  5. border-radius: 10px;
  6. background-color: #fff;
  7. padding: 15px 24px;
  8. display: flex;
  9. justify-content: space-between;
  10. & > div {
  11. display: flex;
  12. .A5TopRow {
  13. display: flex;
  14. align-items: center;
  15. margin-right: 20px;
  16. .ant-select-selection-placeholder {
  17. color: black;
  18. }
  19. }
  20. }
  21. }
  22. .A5tableBox {
  23. border-radius: 10px;
  24. overflow: hidden;
  25. margin-top: 15px;
  26. height: calc(100% - 77px);
  27. background-color: #fff;
  28. }
  29. }
  30. }