File tree 2 files changed +20
-14
lines changed
2 files changed +20
-14
lines changed Original file line number Diff line number Diff line change @@ -310,6 +310,11 @@ html {
310
310
.title {
311
311
font-size : 32px ;
312
312
}
313
+ .anime-img--wrapper {
314
+ max-width : 300px ;
315
+
316
+ }
317
+
313
318
314
319
.search__form {
315
320
justify-content : center;
@@ -326,15 +331,16 @@ html {
326
331
.nav__link {
327
332
display : none;
328
333
}
334
+ .nav__link : nth-child (2 ) {
335
+ display : block;
336
+ }
329
337
.nav__logo
330
338
{
331
339
width : 120px ;
332
340
height : 20px ;
333
341
}
334
342
335
- .nav__link : nth-child (1 ) {
336
- display : block;
337
- }
343
+
338
344
339
345
.header__container {
340
346
padding : 20px ;
Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
2
import "./Footer.css" ;
3
3
import footerLogo from '../assets/skull.gif' ;
4
- import { Link } from 'react-router-dom' ;
4
+
5
5
6
6
7
7
const Footer = ( ) => {
@@ -11,38 +11,38 @@ const Footer = () => {
11
11
< div className = "container" >
12
12
< div className = "row" >
13
13
< div className = "footer__container" >
14
- < Link to = "/#nav" >
14
+ < a href = "/#nav" >
15
15
< figure className = "footer__logo--wrapper" >
16
16
< img
17
17
src = { footerLogo }
18
18
className = "footer__logo"
19
19
alt = ""
20
20
/>
21
21
</ figure >
22
- </ Link >
22
+ </ a >
23
23
< div className = "footer__link--list" >
24
24
< div className = "footer__link" >
25
- < Link to = "/#nav" className = "footer__link--anchor link__hover" >
25
+ < a href = "/#nav" className = "footer__link--anchor link__hover" >
26
26
Home
27
- </ Link >
27
+ </ a >
28
28
</ div >
29
29
< div className = "footer__link" >
30
- < Link to = "/#search" className = "footer__link--anchor link__hover" >
30
+ < a href = "/#search" className = "footer__link--anchor link__hover" >
31
31
Search
32
- </ Link >
32
+ </ a >
33
33
</ div >
34
34
< div className = "footer__link" >
35
35
36
- < Link to = "/#trending"
36
+ < a href = "/#trending"
37
37
className = "footer__link--anchor link__hover"
38
38
>
39
39
Trending
40
- </ Link >
40
+ </ a >
41
41
</ div >
42
42
< div className = "footer__link" >
43
- < Link to = "#popular" className = "footer__link--anchor link__hover" >
43
+ < a href = "#popular" className = "footer__link--anchor link__hover" >
44
44
Popular
45
- </ Link >
45
+ </ a >
46
46
</ div >
47
47
</ div >
48
48
< div className = "footer__copyright" >
You can’t perform that action at this time.
0 commit comments