Skip to content

Commit

Permalink
docs: 이미지 4배로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
noeyeyh committed Jan 16, 2024
1 parent b32394f commit 234ecce
Show file tree
Hide file tree
Showing 13 changed files with 23 additions and 15 deletions.
Binary file modified front-end/src/assets/img/Feather.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified front-end/src/assets/img/Under.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified front-end/src/assets/img/Vector.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified front-end/src/assets/img/X.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified front-end/src/assets/img/i_button.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified front-end/src/assets/img/info.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified front-end/src/assets/img/share_Button.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified front-end/src/assets/img/고양이.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified front-end/src/assets/img/낭만고양이.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified front-end/src/assets/img/우체통.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions front-end/src/components/Header/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const LogoContainer = styled.div`
position: absolute;
`;

const Logo = styled.div`
const LogoImg = styled.img`
width: 32.02px;
height: 33.06px;
left: 0;
Expand Down Expand Up @@ -103,9 +103,9 @@ const Feather = styled.div`
display: flex;
`;

const FeatherImage = styled.img`
width: 18.67px;
height: 20.75px;
const FeatherImg = styled.img`
width: 25px;
height: 25px;
`;

const StyledLink = styled(Link)`
Expand All @@ -118,7 +118,7 @@ export default function Header() {
<InnerContainer>
<StyledLink to="/">
<LogoContainer>
<Logo><img src={logo} alt='logo' /></Logo>
<LogoImg src={logo} alt='logo' />
<TextLogo>낭만고양이</TextLogo>
</LogoContainer>
</StyledLink>
Expand All @@ -138,7 +138,7 @@ export default function Header() {
</MenuContainer>
<FeatherContainer>
<Feather>
<StyledLink to="/MyPage"><FeatherImage src={feather} alt='feather' /></StyledLink>
<StyledLink to="/MyPage"><FeatherImg src={feather} alt='feather' /></StyledLink>
</Feather>
</FeatherContainer>
</InnerContainer>
Expand Down
25 changes: 17 additions & 8 deletions front-end/src/components/MyLetterbox/Info.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,19 @@ const ModalContainer = styled.div`
background: white;
border-top-left-radius: 70px;
border-top-right-radius: 70px;
overflow: hidden;
overflow: visible;
`;

// 검정 윗부분
const BlackBar = styled.div`
width: 488px;
width: 463px;
height: 82px;
left: 0;
top: 0;
position: absolute;
background: black;
border-top-left-radius: 70px;
border-top-right-radius: 70px;
`;

// 내 우편함 정보
Expand Down Expand Up @@ -67,8 +69,7 @@ const InfoImg = styled.img`
height: 20px;
left: 0;
top: 3px;
position: absolute;
background: white;
position: absolute;
`

const CloseButtonImg = styled.img`
Expand Down Expand Up @@ -138,13 +139,22 @@ const Placeholder = styled.div`
background: black;
border-radius: 50px;
`
const Triangle = styled.div`
width: 0;
height: 0;
border-left: 4.3px solid transparent; // 가로 길이의 절반
border-right: 4.3px solid transparent; // 가로 길이의 절반
border-bottom: 10px solid black; // 세로 길이
position: relative;
left: 19.91px;
`

const TooltipText = styled.div`
width: 185px;
height: 14px;
position: absolute;
left: 6px;
top: 5px;
top: 14px;
color: white;
font-size: 12px;
font-family: 'Pretendard';
Expand Down Expand Up @@ -205,7 +215,6 @@ const UnderImg = styled.img`
position: absolute;
width: 13.86px;
height: 12px;
background: black;
top: 6px;
right: 6.14px;
bottom: 5px;
Expand Down Expand Up @@ -341,7 +350,6 @@ const NameIconImg = styled.img`
left: 0;
top: 0;
position: absolute;
background: black;
`


Expand Down Expand Up @@ -375,7 +383,7 @@ export default function Info({ isOpen, onClose }) {
<InfoContainer>
<InfoTitle>내 우편함 정보</InfoTitle>
<InfoImg src={InfoImage} alt='InfoImage' />
<button onClick={onClose}><CloseButtonImg src={X} alt='X' /></button>
<CloseButtonImg src={X} alt='X' onClick={onClose} />
</InfoContainer>

<Container1>
Expand All @@ -385,6 +393,7 @@ export default function Info({ isOpen, onClose }) {
</Toggle>

<Tooltip isActive={isActive}>
<Triangle />
<Placeholder />
<TooltipText>우편함을 닫으면 편지를 받을 수 없어요.</TooltipText>
</Tooltip>
Expand Down
1 change: 0 additions & 1 deletion front-end/src/pages/Login.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import React from 'react'
import Logincontrl from "../components/Login/Logincontrol"

Expand Down

0 comments on commit 234ecce

Please sign in to comment.