File tree Expand file tree Collapse file tree 2 files changed +68
-5
lines changed Expand file tree Collapse file tree 2 files changed +68
-5
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ export default function Footer() {
23
23
</ a >
24
24
</ Link >
25
25
26
+ < div className = { footerStyles . footer__navSocialsDiv } >
27
+ { /* nav & socials */ }
28
+
26
29
< nav className = { footerStyles . footer__nav } aria-label = 'Main' >
27
30
< ul className = { footerStyles . footer__navList } >
28
31
{ linksNav . map ( link => (
@@ -35,21 +38,24 @@ export default function Footer() {
35
38
</ ul >
36
39
</ nav >
37
40
38
- < div >
39
- < ul >
41
+ < div className = { footerStyles . footer__socialIcons } >
42
+ < ul className = { footerStyles . footer__socialList } >
40
43
{ linksSocial . map ( link => (
41
- < li key = { link . id } >
44
+ < li className = { footerStyles . footer__socialItem } key = { link . id } >
42
45
< Image
43
46
src = { link . src }
44
- height = { 47 }
45
- width = { 47 }
47
+ height = { 82 }
48
+ width = { 68 }
46
49
/>
47
50
</ li >
48
51
) ) }
49
52
</ ul >
50
53
</ div >
54
+ </ div >
51
55
52
56
</ Container >
57
+
58
+
53
59
< Container >
54
60
< p className = { footerStyles . footer__copyright } >
55
61
© Web Dev Path { new Date ( ) . getFullYear ( ) } . All rights reserved.
Original file line number Diff line number Diff line change 30
30
31
31
& __navList {
32
32
padding : 0 ;
33
+
34
+ @include tablet {
35
+ display : flex ;
36
+ flex-direction : row ;
37
+ }
33
38
}
34
39
40
+
35
41
& __navItem {
36
42
margin : 0.5rem 0 ;
43
+
44
+ @include tablet {
45
+ padding-left : 60px ;
46
+ }
37
47
}
38
48
39
49
& __logo {
52
62
}
53
63
}
54
64
65
+ & ____navSocialsDiv {
66
+ display : flex ;
67
+ flex-direction : column ;
68
+
69
+ }
70
+
71
+ & __socialIcons {
72
+
73
+ @include tablet {
74
+
75
+ }
76
+
77
+ @include large-desktop {
78
+
79
+ }
80
+ }
81
+
82
+ & __socialList {
83
+ display : flex ;
84
+ justify-content : center ;
85
+ margin : 0 ;
86
+ padding : 0 ;
87
+
88
+ @include tablet {
89
+ justify-content : end ;
90
+ }
91
+ }
92
+
93
+ & __socialItem {
94
+ width : 47px ;
95
+
96
+ @include tablet {
97
+ padding-left : 28px ;
98
+ max-width : 68px ;
99
+ }
100
+
101
+ @include large-desktop {
102
+ max-width : 100% ;
103
+ padding-left : 28px ;
104
+ width : 68px ;
105
+ }
106
+ }
107
+
55
108
& __copyright {
56
109
text-align : center ;
57
110
margin : 0 ;
58
111
font-size : 1rem ;
59
112
padding-bottom : 2.5rem ;
113
+
114
+ @include tablet {
115
+ text-align : end ;
116
+ }
60
117
}
61
118
}
You can’t perform that action at this time.
0 commit comments