-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathFooter.module.scss
More file actions
106 lines (89 loc) · 1.84 KB
/
Footer.module.scss
File metadata and controls
106 lines (89 loc) · 1.84 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
94
95
96
97
98
99
100
101
102
103
104
105
106
@import '../../style/main';
.footer {
background-color: $header-footer-bg-color;
height: $footer-height-desktop-tablet;
box-shadow: 0 -1px 0 0 $shadow-color;
@include on-mobile {
height: $footer-height-mobile;
}
&__content {
@include page-grid;
height: $footer-height-desktop-tablet;
align-content: center;
@include on-mobile {
height: $footer-height-mobile;
row-gap: 32px;
}
}
&__logo {
display: flex;
background-image: url(/img/header/logo.svg);
background-size: cover;
background-repeat: no-repeat;
height: 32px;
width: 89px;
&__container {
align-items: center;
}
}
&__to-top {
font-family: inherit;
margin: 0;
padding: 0;
display: flex;
justify-self: end;
font-weight: 600;
font-size: 12px;
letter-spacing: 4%;
text-decoration: none;
color: $secondary-color;
width: 118px;
height: 32px;
line-height: 32px;
background-image: url(/img/footer/slider-button-default.svg);
background-size: 32px;
background-position: right;
background-repeat: no-repeat;
@include on-mobile {
justify-self: center;
}
}
&__logo__container,
&__nav,
&__to-top {
border: none;
background-color: inherit;
cursor: pointer;
grid-column: span 8;
align-self: center;
@include on-tablet {
grid-column: span 4;
}
}
}
.nav {
&__list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: space-between;
@include on-mobile {
flex-direction: column;
gap: 16px;
}
}
&__item {
display: flex;
}
&__link {
text-decoration: none;
color: $secondary-color;
font-weight: 700;
font-size: 12px;
line-height: 11px;
letter-spacing: 4%;
text-transform: uppercase;
justify-self: end;
}
}