File tree Expand file tree Collapse file tree 9 files changed +37
-17
lines changed Expand file tree Collapse file tree 9 files changed +37
-17
lines changed Original file line number Diff line number Diff line change 1
1
.footer-copyright-text {
2
2
color : # 6c6c6c !important ;
3
3
text-decoration : none;
4
-
5
4
}
6
5
7
6
.footer-navbar {
Original file line number Diff line number Diff line change @@ -12,27 +12,28 @@ const Footer = () => {
12
12
>
13
13
< Container >
14
14
< Navbar . Text className = "footer-copyright-text" >
15
- < Link to = "/search" >
15
+
16
+ < Link to = "#" onClick = { ( ) => window . history . back ( ) } >
16
17
{ " " }
17
18
< img
18
- src = { process . env . PUBLIC_URL + "/search .png" }
19
- alt = "search glass "
19
+ src = { process . env . PUBLIC_URL + "/back .png" }
20
+ alt = "back "
20
21
className = "footer-icon"
21
22
/>
22
23
</ Link >
23
24
< Link to = "/main" >
24
25
{ " " }
25
26
< img
26
- src = { process . env . PUBLIC_URL + "/bluehouse .png" }
27
- alt = "Blue House"
27
+ src = { process . env . PUBLIC_URL + "/house .png" }
28
+ alt = "House"
28
29
className = "footer-icon"
29
30
/>
30
31
</ Link >
31
32
< Link to = "/mypage" >
32
33
{ " " }
33
34
< img
34
- src = { process . env . PUBLIC_URL + "/treasure_box .png" }
35
- alt = "treasure box "
35
+ src = { process . env . PUBLIC_URL + "/favorite .png" }
36
+ alt = "userFavorite "
36
37
className = "footer-icon"
37
38
/>
38
39
</ Link >
Original file line number Diff line number Diff line change
1
+ .header-icon {
2
+ width : 1.5rem ;
3
+ margin-top : 2rem ;
4
+ /* 이미지 간의 간격을 조정합니다. */
5
+ }
6
+ .header-title {
7
+ display : flex;
8
+ justify-content : space-between;
9
+ }
Original file line number Diff line number Diff line change @@ -11,15 +11,26 @@ const Header = () => {
11
11
fixed = "top"
12
12
style = { { height : "8%" , padding : "2vh 4vh" , backgroundColor : "white" } }
13
13
>
14
- < Link to = "/" >
15
- < img
16
- src = { logo }
17
- width = "160px"
18
- className = "logo-img"
19
- alt = "Keywordream logo"
20
- style = { { marginTop : "15px" , paddingLeft : "0vh" } }
21
- />
22
- </ Link >
14
+ < div className = "header-title" >
15
+ < Link to = "/" >
16
+ < img
17
+ src = { logo }
18
+ width = "160px"
19
+ className = "logo-img"
20
+ alt = "Keywordream logo"
21
+ style = { { marginTop : "2rem" , paddingLeft : "0vh" } }
22
+ />
23
+ </ Link >
24
+
25
+ < Link to = "/search" >
26
+ { " " }
27
+ < img
28
+ src = { process . env . PUBLIC_URL + "/search.png" }
29
+ alt = "search glass"
30
+ className = "header-icon"
31
+ />
32
+ </ Link >
33
+ </ div >
23
34
< Container > </ Container >
24
35
</ Navbar >
25
36
) ;
You can’t perform that action at this time.
0 commit comments