button.scss 279 Bytes
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
zhanghaozhe committed
2
.custom-button {
zhanghaozhe committed
3 4 5
    width: 300px;
    height: 44px;
    border-radius: 3px;
zhanghaozhe committed
6 7 8
    -webkit-appearance: none;
    border: none;
    font-size: $font_18;
zhanghaozhe committed
9 10 11 12 13 14
    color: $white;

    &.active {
        background: $active;
        color: $white;
    }
zhanghaozhe committed
15
}