Skip to content

Commit

Permalink
Merge pull request #14 from kichan05/master
Browse files Browse the repository at this point in the history
2024.04.17-1
  • Loading branch information
kichan05 authored Apr 17, 2024
2 parents 757e9e5 + a743c6b commit 602ec2d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# kichan.dev
[바로가기](https://kichan.dev)

React.js를 사용해서 개발되었습니다.
React와 styled-components를 사용해서 개발되었습니다.
9 changes: 7 additions & 2 deletions src/component/Alert.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import {GoX, GoArchive} from "react-icons/go";
import {IconButton} from "./IconButton";
import {CSSTransition, TransitionGroup} from "react-transition-group";

import Pin from "./../assets/ic_pin.png"

const AlertStyle = styled.ul`
display: inline-block;
Expand Down Expand Up @@ -58,6 +60,10 @@ const AlertMessageStyle = styled.li`
.close-icon {
opacity: 0;
transition: 200ms;
img {
width: 20px;
}
}
&:hover .close-icon {
Expand Down Expand Up @@ -100,8 +106,7 @@ const AlertMessage = ({state, message, timeout}) => {
onClick={() => {
clearTimeout(removeTimeOut.current)
}}
><GoArchive/></IconButton>
{/*todo : 압정 아이콘으로 변경*/}
><img src={Pin} alt=""/></IconButton>
<IconButton
width={24}
size={20}
Expand Down
2 changes: 1 addition & 1 deletion src/component/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const Footer = () => {
return (
<FooterStyle>
<div ref={footerElement}>
개발・다자인 : 박희찬(kichan)
개발・디자인 : 박희찬(kichan)
<p>오픈 소스 프로젝트 : <a href="https://github.com/kichan05/kichan.dev" target={"_blank"}>github.com/kichan05/kichan.dev</a></p>
</div>
</FooterStyle>
Expand Down

0 comments on commit 602ec2d

Please sign in to comment.