-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/footer_qna
- Loading branch information
Showing
18 changed files
with
340 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import "./adminMenu.css"; | ||
import { NavLink } from 'react-router-dom'; | ||
|
||
export default function AdminMenu() { | ||
return ( | ||
<div className="admin_container"> | ||
<div className="admin_header"> | ||
<h3>마이페이지</h3> | ||
</div> | ||
<div className="admin_body"> | ||
<div className="menu_tab">소개글 수정</div> | ||
<div className="menu_tab">모집글 작성</div> | ||
<div className="divider"/> | ||
<NavLink to={`/admin/mypage/reviews`} className="menu_tab">리뷰 목록</NavLink> | ||
<NavLink to={`/admin/mypage/pending`} className="menu_tab">리뷰 승인</NavLink> | ||
</div> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
.admin_container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
margin-bottom: 200px; | ||
} | ||
|
||
.admin_header { | ||
width: 100%; | ||
height: 177px; | ||
background: #7bc8e0; | ||
text-align: center; | ||
margin-bottom: 30px; | ||
} | ||
|
||
.admin_header h3 { | ||
position: relative; | ||
top: 45%; | ||
} | ||
|
||
.admin_body { | ||
width: 80%; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
.menu_tab { | ||
width: 40%; | ||
padding: 10px 0px; | ||
text-align: center; | ||
border-radius: 8px; | ||
border: 1px solid #9c9c9c4d; | ||
box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25); | ||
margin: 4px 0px; | ||
font-size: 14px; | ||
font-weight: 500; | ||
text-decoration: none; | ||
color: rgba(0, 0, 0, 0.7); | ||
} | ||
|
||
.menu_tab:hover { | ||
color: #7bc8e0; | ||
} | ||
|
||
.divider { | ||
width: 45%; | ||
border: 0.2px solid #9c9c9c4d; | ||
margin: 20px 0px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,7 +78,7 @@ | |
border: none; | ||
} | ||
|
||
.next { | ||
.next-button { | ||
width: 90px; | ||
height: 40px; | ||
border-radius: 5px; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.