Skip to content

Commit

Permalink
Merge pull request #279 from KKangHHee/test
Browse files Browse the repository at this point in the history
Docs: 마이페이지 구분선 수정
  • Loading branch information
hhbb0081 authored Mar 26, 2024
2 parents bb358ee + b3ca03c commit f24a111
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 15 deletions.
3 changes: 3 additions & 0 deletions src/pages/HomePage/Homepage.css
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,9 @@
flex-direction: row;
height: 5.75rem;
align-items: center;
margin-right: 1.5rem;
margin-left: 1.5rem;
overflow-x: auto;
gap: 0.6875rem;
height: 7rem;
overflow-x: auto;
Expand Down
33 changes: 18 additions & 15 deletions src/pages/MyPage/MyPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function Mypage() {
</div>
</div>

<div className="mypage_profile_line"></div>
<hr className="mypage_profile_line"/>

<div className="mypage_profile_category_title">
문의 및 알림
Expand All @@ -123,21 +123,24 @@ function Mypage() {
</div>

{isAuth && (
<div className="mypage_profile_category_manage">
계정관리
<div
className="mypage_profile_category"
onClick={() => setIsOpen(true)}
>
로그아웃
</div>
<div
className="mypage_profile_category"
onClick={() => setIsBye(true)}
>
계정탈퇴
<>
<hr className="mypage_profile_line"/>
<div className="mypage_profile_category_manage">
계정관리
<div
className="mypage_profile_category"
onClick={() => setIsOpen(true)}
>
로그아웃
</div>
<div
className="mypage_profile_category"
onClick={() => setIsBye(true)}
>
계정탈퇴
</div>
</div>
</div>
</>
)}

{isOpen && (
Expand Down

0 comments on commit f24a111

Please sign in to comment.