-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathFooter.module.scss
More file actions
93 lines (79 loc) · 1.39 KB
/
Footer.module.scss
File metadata and controls
93 lines (79 loc) · 1.39 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
93
@import '../../styles/utils';
.footer {
border-top: 1px solid #E2E6E9;
background-color: $white;
padding: 32px 0;
margin-top: auto;
}
.content {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
@media (max-width: 640px) {
flex-direction: column;
gap: 24px;
}
}
.logo {
display: flex;
align-items: center;
}
.links {
display: flex;
gap: 106px;
a {
text-decoration: none;
color: $secondary;
font-weight: 700;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.04em;
transition: color 0.3s;
&:hover {
color: $primary;
}
}
@media (max-width: 640px) {
flex-direction: column;
align-items: center;
gap: 16px;
}
}
.arrowButton {
width: 32px;
height: 32px;
border: 1px solid #B4BDC3;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.3s;
background-color: transparent;
padding: 0;
img {
width: 14px;
height: 14px;
object-fit: contain;
}
}
.backToTop {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
cursor: pointer;
background: none;
border: none;
color: $secondary;
font-weight: 600;
font-size: 12px;
transition: color 0.3s;
&:hover {
color: $primary;
.arrowButton {
border-color: $primary;
color: $primary;
}
}
}