style.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .SpaceCostManagement {
  2. padding: 16px;
  3. background: #FFFFFF;
  4. border-radius: 4px;
  5. .toolBar {
  6. display: flex;
  7. flex-direction: row;
  8. justify-content: space-between;
  9. align-items: center;
  10. .filter {
  11. display: flex;
  12. flex-direction: row;
  13. justify-content: flex-start;
  14. align-items: center;
  15. .filterItem {
  16. display: flex;
  17. flex-direction: row;
  18. justify-content: center;
  19. align-items: center;
  20. }
  21. }
  22. .btnGroup {
  23. .import {
  24. cursor: pointer;
  25. display: inline-block;
  26. font-size: 14px;
  27. font-weight: 400;
  28. color: #17181A;
  29. line-height: 24px;
  30. padding: 0 14px;
  31. margin-right: 8px;
  32. background: #FAFCFF;
  33. border-radius: 4px;
  34. border: 1px solid #DAE2F2;
  35. }
  36. .add {
  37. cursor: pointer;
  38. display: inline-block;
  39. font-size: 14px;
  40. font-weight: 400;
  41. color: #FFFFFF;
  42. line-height: 24px;
  43. padding: 0 14px;
  44. background: #3377FF;
  45. border-radius: 4px;
  46. }
  47. }
  48. }
  49. }