-
-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathperk.css
More file actions
49 lines (46 loc) · 880 Bytes
/
perk.css
File metadata and controls
49 lines (46 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
41
42
43
44
45
46
47
48
49
.c-perk {
@apply bg-backgroundColorA shadow-smZ1 rounded-8;
@apply p-20;
@apply flex flex-col items-stretch;
.logo {
@apply h-[40px];
@apply mb-12;
@apply self-start;
}
.about {
@apply text-p-base;
@apply mb-12;
}
.details {
@apply text-p-base font-medium;
@apply mt-auto mb-20;
strong {
@apply font-semibold text-textColor2;
}
}
.buttons {
@apply flex gap-12;
*:first-child {
@apply flex-grow;
}
.c-react-wrapper-perks-modal-button {
button {
@apply w-fill;
}
}
}
}
.theme-light {
.c-perk {
.logo-dark {
@apply hidden;
}
}
}
.theme-dark {
.c-perk {
.logo-light {
@apply hidden;
}
}
}