index.module.less 638 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .liveClass {
  2. :global {
  3. .el-tabs__item {
  4. font-size: 18px;
  5. font-weight: 600;
  6. color: #999;
  7. height: 56px;
  8. line-height: 56px;
  9. padding-right: 40px;
  10. padding-left: 0;
  11. &.is-active {
  12. font-size: 20px;
  13. color: #000;
  14. }
  15. }
  16. .el-tabs__nav-wrap::after {
  17. height: 1px;
  18. background: #eeeeee;
  19. }
  20. .el-tabs__active-bar {
  21. height: 4px;
  22. }
  23. }
  24. }
  25. .items:first-child {
  26. display: flex;
  27. justify-content: flex-start;
  28. & > div {
  29. margin: 0;
  30. }
  31. }
  32. .items:nth-child(3n + 3) {
  33. display: flex;
  34. justify-content: flex-end;
  35. & > div {
  36. margin: 0;
  37. }
  38. }