-
Notifications
You must be signed in to change notification settings - Fork 367
Expand file tree
/
Copy pathFooterLinks.module.css
More file actions
92 lines (77 loc) · 1.98 KB
/
Copy pathFooterLinks.module.css
File metadata and controls
92 lines (77 loc) · 1.98 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
88
89
90
91
92
.footer {
margin-top: rem(120px);
padding-top: calc(var(--mantine-spacing-xl) * 2);
padding-bottom: calc(var(--mantine-spacing-xl) * 2);
background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-6));
border-top: rem(1px) solid light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-5));
}
.logo {
max-width: rem(200px);
@media (max-width: $mantine-breakpoint-sm) {
display: flex;
flex-direction: column;
align-items: center;
}
}
.description {
margin-top: rem(5px);
@media (max-width: $mantine-breakpoint-sm) {
margin-top: var(--mantine-spacing-xs);
text-align: center;
}
}
.inner {
display: flex;
justify-content: space-between;
@media (max-width: $mantine-breakpoint-sm) {
flex-direction: column;
align-items: center;
}
}
.groups {
display: flex;
flex-wrap: wrap;
gap: rem(20px);
@media (max-width: $mantine-breakpoint-sm) {
display: none;
}
}
.wrapper {
width: rem(160px);
}
.link {
display: block;
color: light-dark(var(--mantine-color-gray-6), var(--mantine-color-dark-1));
font-size: var(--mantine-font-size-sm);
padding-top: rem(3px);
padding-bottom: rem(3px);
&:hover {
text-decoration: underline;
}
}
.title {
font-size: var(--mantine-font-size-lg);
font-weight: 700;
font-family:
Greycliff CF,
var(--mantine-font-family);
margin-bottom: calc(var(--mantine-spacing-xs) / 2);
color: light-dark(var(--mantine-color-black), var(--mantine-color-white));
}
.afterFooter {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: var(--mantine-spacing-xl);
padding-top: var(--mantine-spacing-xl);
padding-bottom: var(--mantine-spacing-xl);
border-top: rem(1px) solid light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-4));
@media (max-width: $mantine-breakpoint-sm) {
flex-direction: column;
}
}
.social {
@media (max-width: $mantine-breakpoint-sm) {
margin-top: var(--mantine-spacing-xs);
}
}