File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,9 @@ export default props => {
73
73
< div className = "header__container" >
74
74
< nav >
75
75
< div className = "nav__logo" >
76
- < img src = "/static/favicons/android-chrome-192x192.png" alt = "" />
76
+ < Link href = "/" >
77
+ < img src = "/static/favicons/android-chrome-192x192.png" alt = "" />
78
+ </ Link >
77
79
</ div >
78
80
< input id = "menu" type = "checkbox" />
79
81
< label htmlFor = "menu" className = "mobile__menu" >
@@ -139,6 +141,7 @@ export default props => {
139
141
width: 50px;
140
142
height: 50px;
141
143
margin-right: 5px;
144
+ cursor: pointer;
142
145
}
143
146
.nav__links {
144
147
margin: 0;
@@ -186,7 +189,7 @@ export default props => {
186
189
}
187
190
input[type='checkbox'] {
188
191
position: absolute;
189
- opacity: 0 ;
192
+ display: none ;
190
193
top: 25px;
191
194
left: 25px;
192
195
}
@@ -260,6 +263,10 @@ export default props => {
260
263
.mobile__menu {
261
264
display: block;
262
265
}
266
+ input[type='checkbox'] {
267
+ display: block;
268
+ opacity: 0;
269
+ }
263
270
.nav__links {
264
271
flex-direction: column;
265
272
width: 100%;
You can’t perform that action at this time.
0 commit comments