index.module.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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-tbody > tr > td) {
  18. // padding: 0.3rem;
  19. // }
  20. // :global(.ant-table-thead > tr > th) {
  21. // padding: 0.3rem;
  22. // color: #000000;
  23. // text-align: center;
  24. // background: #e9ecef;
  25. // border-bottom: 2px solid #dee2e6;
  26. // border-bottom-width: 2px;
  27. // }
  28. }
  29. .extraControl {
  30. width: 100%;
  31. height: 38%;
  32. }
  33. }
  34. .modalWarnText {
  35. padding: 0.5rem;
  36. margin-bottom: 1rem;
  37. color: #856404;
  38. background-color: #fff3cd;
  39. border: 1px solid transparent;
  40. border-color: #ffeeba;
  41. border-radius: 0.25rem;
  42. }
  43. .modalTemplateContent {
  44. display: flex;
  45. justify-content: space-between;
  46. & > div {
  47. background-color: #ffffff;
  48. background-clip: border-box;
  49. border: 1px solid rgba(0, 0, 0, 0.125);
  50. border-radius: 0.25rem;
  51. &:hover {
  52. border-color: #007bff;
  53. }
  54. }
  55. .leftTemplate {
  56. width: 45%;
  57. }
  58. .rightTemplate {
  59. width: 45%;
  60. }
  61. .active {
  62. border-color: #007bff;
  63. }
  64. }