button.scss 244 Bytes
Newer Older
zhanghaozhe committed
1
.custom-button {
zhanghaozhe committed
2 3 4
    width: 300px;
    height: 44px;
    border-radius: 3px;
zhanghaozhe committed
5 6 7
    -webkit-appearance: none;
    border: none;
    font-size: $font_18;
zhanghaozhe committed
8 9 10 11 12 13
    color: $white;

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