tabsmixin.less 659 Bytes
@NavHeight: 40px;

/deep/.van-tabs {

    .van-tabs__wrap {
        height: @NavHeight;

        .van-tabs__nav {
            background    : transparent;
            padding-bottom: 0;

            .van-tab {
                font-size     : 15px;
                color         : white;
                padding-bottom: 5px;
            }

            .van-tab--active {
                font-size: 19px;
            }

            .van-tabs__line {
                background: white;
                bottom    : 4px;
            }
        }
    }

    .van-tabs__content {
        flex: 1;

        .van-tab__pane {
            height: 100%;
        }
    }

}