-
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.
* feat: 모바일 햄버거 추가 * design: 문구 수정 * feat: 어드민 페디지 분리 * feat: 로그인하지 않은 사용자의 게시글, 댓글 제한 * feat: 인스타 링크 추가 * design: 탭 영역 디자인 * feat: 어드민 진입 시 자동으로 탭 선택 * design: 정렬 수정 * feat: 질문 추가
- Loading branch information
1 parent
02f0d5c
commit 86a696b
Showing
13 changed files
with
486 additions
and
81 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<template> | ||
<h1>어드민 페이지</h1> | ||
<div class="tab-container"> | ||
<li> | ||
<router-link to="/admin/users">회원 관리</router-link> | ||
</li> | ||
<li> | ||
<router-link to="/admin/form">지원서 관리</router-link> | ||
</li> | ||
<li> | ||
<router-link to="/admin/apply-alarm">지원 대기 명단</router-link> | ||
</li> | ||
<li> | ||
<router-link to="/admin/apply/form">지원서 양식</router-link> | ||
</li> | ||
</div> | ||
|
||
<div class="router-container"> | ||
<router-view></router-view> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default {} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.tab-container { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 1vh; | ||
list-style: none; | ||
margin: 0; | ||
} | ||
li { | ||
margin-right: 1vh; | ||
margin-bottom: 5vh; | ||
} | ||
.router-link { | ||
display: block; | ||
padding: 10px 20px; | ||
color: #333; | ||
text-decoration: none; | ||
transition: background-color 0.3s, color 0.3s; | ||
border-radius: 5px; | ||
background-color: #f0f0f0; | ||
} | ||
.router-link-active, .router-link-exact-active { | ||
background-color: gray; | ||
color: #fff; | ||
border-radius: 5px; | ||
padding: 1vh; | ||
} | ||
</style> |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<template> | ||
<h1> | ||
모집 일정 | ||
24-1 모집 일정 | ||
</h1> | ||
<div class="container"> | ||
<div class="text-box"> | ||
|
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.