default-drtab.less 497 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
.app-dr-tab {
    .dr-tab-item {
        cursor: pointer;
        padding: 0 16px;
        &.is-active,
        &:hover {
            color: #2d8cf0;
        }
        &.is-active {
            position: relative;
        }
        &.is-active::after {
            content: '';
            width: 100%;
            height: 2px;
            background: #2d8cf0;
            position: absolute;
            left: 0px;
            bottom: 0px;
        }
    }
}
// this is less