index.module.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .projectTable {
  2. :global(.ant-table-cell) {
  3. padding: 0.3rem;
  4. }
  5. }
  6. .spreadContent {
  7. position: relative;
  8. height: calc(100vh - 34px);
  9. overflow: hidden;
  10. .spreadSheets {
  11. width: 100%;
  12. height: 62%;
  13. overflow: hidden;
  14. :global(.ant-input-group-addon) {
  15. padding: 0 6px;
  16. }
  17. :global(.ant-table-row.ant-table-row-level-0) {
  18. font-weight: 600;
  19. }
  20. :global(.ant-form-item-control-input) {
  21. min-height: 28px;
  22. }
  23. // :global(.ant-table-tbody > tr > td) {
  24. // padding: 0.3rem;
  25. // }
  26. // :global(.ant-table-thead > tr > th) {
  27. // padding: 0.3rem;
  28. // color: #000000;
  29. // text-align: center;
  30. // background: #e9ecef;
  31. // border-bottom: 2px solid #dee2e6;
  32. // border-bottom-width: 2px;
  33. // }
  34. }
  35. .extraControl {
  36. width: 100%;
  37. height: 38%;
  38. }
  39. }
  40. .modalWarnText {
  41. padding: 0.5rem;
  42. margin-bottom: 1rem;
  43. color: #856404;
  44. background-color: #fff3cd;
  45. border: 1px solid transparent;
  46. border-color: #ffeeba;
  47. border-radius: 0.25rem;
  48. }
  49. .modalTemplateContent {
  50. display: flex;
  51. justify-content: space-between;
  52. & > div {
  53. background-color: #ffffff;
  54. background-clip: border-box;
  55. border: 1px solid rgba(0, 0, 0, 0.125);
  56. border-radius: 0.25rem;
  57. &:hover {
  58. border-color: #007bff;
  59. }
  60. }
  61. .leftTemplate {
  62. width: 45%;
  63. }
  64. .rightTemplate {
  65. width: 45%;
  66. }
  67. .active {
  68. border-color: #007bff;
  69. }
  70. }