保誠-保戶業務員媒合平台
Mila
2021-10-27 11408196d7667dbffa71d0b1f2b61308808c22e4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@mixin desktop() {
    @media (min-width: 1024px) {
        @content;
    }
}
 
@mixin btn {
    border-radius: 30px;
    background-color: $primaryRed;
    color: $white;
 
    &:hover {
        background-color: $primaryRed;
        color: $white;
    }
 
    &:focus {
        background-color: #CF2736;
    }
 
    &:disabled {
        background-color: $lightGrey;
    }
}