index.scss 570 Bytes
Newer Older
xuzhenghua committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
.use-coupon {
    display: flex;
    flex-flow: column;
    height: 100%;
    background-color: #f5f5f5;

    .coupons-area {
        padding: 72px 12px 0px;
        background: $bg_f5f5f5;
        flex: 1 1 auto;

        .empty {
            min-height: 211px;
            line-height: 211px;
            font-size: $font_12;
            color: $color_666;
            text-align: center;
        }

        .invalid-title{
            text-align: center;
            font-size: $font_12;
            line-height: 52px;
            color: $color_999;
        }
    }
}