index.module.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .TopicSetting {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. background-color: rgb(239, 239, 239);
  7. :global {
  8. .ruleTop {
  9. border-radius: 4px;
  10. padding: 15px 20px 25px 20px;
  11. background-color: #fff;
  12. box-shadow: 3px 0px 10px 0px #d5d5d9;
  13. height: 100%;
  14. .toprule {
  15. display: flex;
  16. justify-content: space-between;
  17. align-items: start;
  18. margin-bottom: 10px;
  19. .pageTitle {
  20. .exportBtn {
  21. width: 100px;
  22. height: 40px;
  23. }
  24. }
  25. .addTopicBtn {
  26. // position: absolute;
  27. // right: 2.5%;
  28. // top: 3%;
  29. // height: 30px;
  30. cursor: pointer;
  31. margin-left: 20px;
  32. position: absolute;
  33. right: 24px;
  34. // transform: translateY(-50%);
  35. }
  36. }
  37. .tableBox1 {
  38. border-radius: 4px;
  39. overflow: hidden;
  40. margin-top: 3%;
  41. padding: 0px;
  42. .ant-table-body {
  43. height: 500px;
  44. overflow-y: auto !important;
  45. overflow-y: overlay !important;
  46. .ant-table-row {
  47. .ant-table-cell {
  48. padding: 10px;
  49. }
  50. }
  51. }
  52. }
  53. }
  54. }
  55. }