blob: 59e596a4e4619a31086570195d8816a054ea8cf6 (
plain) (
blame)
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
32
33
34
35
36
37
38
|
.button-group {
display: flex;
justify-content: center;
align-items: center;
&__button {
font-family: Overpass;
font-size: 1rem;
color: $manatee;
border-style: solid;
border-color: $geyser;
border-width: 1px 1px 1px;
border-left: 0;
flex: 1;
padding: 12px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
&:first-child {
border-left: 1px solid $geyser;
border-radius: 4px 0 0 4px;
}
&:last-child {
border-radius: 0 4px 4px 0;
}
&--active {
background-color: $dexon-purple;
color: $white;
}
&:disabled {
opacity: .5;
}
}
}
|