common.less 886 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @bg-color:#fff; /**主题背景色**/
  2. @header-height:50px; /***Header高度**/
  3. @table-th-color:#F2F4F6; /***表头背景色***/
  4. @active-bg:#DEF1FF; /***下拉项选中背景色***/
  5. .ant-form-item-label > label{
  6. color: #000;
  7. }
  8. .wrapper{
  9. min-width: 1214px;
  10. .basic{
  11. height: 78px;
  12. background: #fff;
  13. margin-bottom:12px;
  14. display: flex;
  15. justify-content: space-between;
  16. align-items: center;
  17. padding: 0 28px 0 60px;
  18. border-radius: 4px;
  19. .basic-left{
  20. display: flex;
  21. }
  22. .basic-right{
  23. & button:first-child{
  24. margin-right: 15px;
  25. }
  26. }
  27. }
  28. .table{
  29. padding: 0 28px;
  30. background: #fff;
  31. .table-header{
  32. display: flex;
  33. justify-content: space-between;
  34. padding: 24px 0;
  35. .ant-breadcrumb-link{
  36. font-size: 16px;
  37. font-weight: 500;
  38. color: #333333;
  39. }
  40. }
  41. }
  42. }