File size: 530 Bytes
f2bee8a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
28
29
30
31
@import "../../css/colors.css";

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: 0.75rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: $motion-primary;
    border-radius: 0.5rem;
}

.container + .container {
    margin-top: 1.25rem;
}

.title {
    margin-top: 0.5rem;
    text-align: center;
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.container:active {
    background-color: $motion-light-transparent;
}