123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- .liveClass {
- :global {
- // .el-tabs__nav-wrap {
- // @apply px-11;
- // }
- .el-tabs__item {
- font-size: 18px;
- font-weight: 600;
- color: #999;
- height: 56px;
- line-height: 56px;
- padding-right: 40px;
- padding-left: 0;
- &.is-active {
- font-size: 20px;
- color: #000;
- }
- }
- .el-tabs__nav-wrap::after {
- height: 1px;
- background: #eeeeee;
- }
- .el-tabs__active-bar {
- height: 4px;
- }
- }
- }
- .items:first-child {
- display: flex;
- justify-content: flex-start;
- & > div {
- margin: 0;
- }
- }
- .items:nth-child(3n + 3) {
- display: flex;
- justify-content: flex-end;
- & > div {
- margin: 0;
- }
- }
|