-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathindex.module.css
More file actions
40 lines (37 loc) · 880 Bytes
/
index.module.css
File metadata and controls
40 lines (37 loc) · 880 Bytes
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
39
40
.containerGroup {
display: flex;
align-items: center;
justify-content: flex-start;
overflow: hidden;
width: 100%;
flex-wrap: wrap;
gap: 8px;
}
.containerButton {
text-align: center;
font-feature-settings: 'clig' off, 'liga' off;
font-family: Inter;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 140%; /* 16.8px */
flex-shrink: 0;
height: 44px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: flex;
justify-content: center;
padding-left: 24px;
padding-right: 24px;
align-items: center;
color: var(--white-color);
gap: 4px;
border-radius: 6px;
border: 1px solid var(--grey-color-7);
box-sizing: border-box;
}
.containerButton.active {
background: var(--grey-color-6);
border: 1px solid var(--grey-color-6);
}