-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathProfilePageBadge.module.css
More file actions
79 lines (68 loc) · 1.33 KB
/
ProfilePageBadge.module.css
File metadata and controls
79 lines (68 loc) · 1.33 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
.container {
width: 100%;
height: 56px;
border-radius: 6px;
padding: 8px 6px;
display: flex;
background-color: var(--harmony-white);
box-shadow:
0 0 1px -2px var(--tile-shadow-1),
0 1px 0 -2px var(--tile-shadow-2),
0 2px 5px -2px var(--tile-shadow-3);
align-items: center;
cursor: pointer;
transition: all var(--harmony-quick);
}
.isCompact {
width: 208px;
border-radius: 8px;
border: 1px solid var(--harmony-n-100);
justify-content: center;
gap: 12px;
}
.isCompact.container svg {
height: 28px;
width: 28px;
}
.isCompact.container .text {
align-items: flex-start;
margin-right: 8px;
}
.container:hover {
transform: perspective(1px) scale3d(1.04, 1.04, 1.04);
}
.container:active {
transform: perspective(1px) scale3d(0.99, 0.99, 0.99);
}
.container svg {
height: 40px;
width: 40px;
}
.text {
display: flex;
flex-direction: column;
padding: 2px 0px;
}
.tierNumber {
color: var(--harmony-n-200);
font-weight: 700;
font-size: font-s;
line-height: 14px;
}
.tierTextContainer {
margin-top: 4px;
}
.tierText {
overflow: visible;
font-weight: 900;
font-size: 22px;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
text-transform: uppercase;
}
.divider {
background-color: var(--harmony-n-200);
width: 1px;
height: 32px;
margin: 0px 6px;
}