data-generate.component.less 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. @import "../../../../src/theme.less";
  2. :host {
  3. width: 100%;
  4. .incidentConfig{
  5. padding-bottom: 24px;
  6. height: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. justify-content: space-between;
  10. background-color: #F0F2F5;
  11. .tagsAndTemplete{
  12. height: 64px;
  13. display: flex;
  14. justify-content: space-between;
  15. align-items: center;
  16. .tags{
  17. height: 100%;
  18. background: #fff;
  19. flex: 1;
  20. padding: 16px 24px;
  21. display: flex;
  22. align-items: center;
  23. justify-content: space-between;
  24. position: relative;
  25. .transport-peizhizhongxin{
  26. color: @primary-color;
  27. font-size: 20px;
  28. margin-right: 8px;;
  29. }
  30. .tagList{
  31. width: 100%;
  32. height: 100%;
  33. position: absolute;
  34. left: 0;
  35. top: 50%;
  36. transform: translateY(-50%);
  37. display: flex;
  38. justify-content: center;
  39. align-items: center;
  40. span{
  41. height: 100%;
  42. display: inline-block;
  43. padding: 0 24px;
  44. cursor: pointer;
  45. display: flex;
  46. justify-content: center;
  47. align-items: center;
  48. &.active{
  49. color: @primary-color;
  50. background: #F0F6ED;
  51. }
  52. }
  53. }
  54. }
  55. }
  56. }
  57. }