-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
87 lines (77 loc) · 1.25 KB
/
index.module.css
File metadata and controls
87 lines (77 loc) · 1.25 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
80
81
82
83
84
85
86
87
@reference "../../styles/index.css";
.footer {
@apply flex
flex-col
items-center
gap-6
border-t
border-neutral-200
bg-white
py-4
text-neutral-500
sm:px-8
md:justify-between
md:py-5
dark:border-neutral-900
dark:bg-neutral-950;
.row {
@apply flex
flex-col
items-center
gap-6
md:flex-row
md:justify-between
md:gap-0
md:self-stretch;
}
.sectionPrimary {
@apply flex
flex-wrap
content-start
items-center
justify-center
gap-1
self-stretch;
a {
@apply whitespace-nowrap;
}
}
.sectionSecondary {
@apply flex
flex-col
items-center
gap-1
md:flex-row;
.social {
@apply flex
items-center
gap-1;
}
}
.legal {
@apply flex
flex-col
gap-2
px-4
text-center
text-xs
text-balance
md:px-14;
p {
@apply text-center
text-sm
text-neutral-800
dark:text-neutral-500;
}
a {
@apply max-xs:font-semibold
text-green-600
dark:text-green-400;
&:hover {
@apply cursor-pointer
text-green-900
dark:text-green-200;
}
}
}
}