|
2 | 2 | <div |
3 | 3 | class="fixed inset-0 bg-black bg-opacity-15 flex items-center z-50" |
4 | 4 | @click.self="$emit('close')"> |
5 | | - <div class="w-80 bg-white h-screen shadow-lg shadow-black"> |
6 | | - <div class="flex justify-center items-center gap-28 py-3 h-[10%]"> |
| 5 | + <div class="flex flex-col relative w-80 bg-white h-screen shadow-lg shadow-black"> |
| 6 | + <div class="flex justify-between items-center my-3 h-[48px] px-6"> |
7 | 7 | <div> |
8 | 8 | <CommonIcons :name="hamburgerIcon" /> |
9 | 9 | </div> |
10 | 10 | <div> |
11 | 11 | <img src="/MainLogo.svg" /> |
12 | 12 | </div> |
13 | 13 | </div> |
14 | | - <div class="h-[80%]"> |
| 14 | + <div class="flex-1 min-h-0 overflow-y-auto"> |
15 | 15 | <div |
16 | 16 | v-for="menuGroup in filteredMenu" |
17 | 17 | :key="menuGroup.groupId"> |
|
23 | 23 | <RouterLink |
24 | 24 | v-if="menuItem.link" |
25 | 25 | :to="menuItem.link" |
26 | | - :class="[ |
27 | | - 'flex py-4 px-6 text-zinc-900', |
28 | | - { 'font-bold': menuItem.link === route.path } |
29 | | - ]"> |
| 26 | + :class="['flex py-4 px-6 text-black', { 'font-bold': menuItem.link === route.path }]"> |
30 | 27 | {{ menuItem.content }} |
31 | 28 | </RouterLink> |
32 | 29 | <span |
33 | 30 | v-else |
34 | | - class="text-xs text-zinc-400 font-bold px-6 pt-8 pb-2"> |
| 31 | + class="text-xs text-disabled font-bold px-6 pt-8 pb-2"> |
35 | 32 | {{ menuItem.content }} |
36 | 33 | </span> |
37 | 34 | </div> |
38 | 35 | </div> |
39 | 36 | </div> |
40 | | - <div class="flex w-full h-[10%] py-4 px-6"> |
| 37 | + <div class="flex w-full px-6 bg-white py-6"> |
41 | 38 | <div class="flex items-center max-w-[140px]"> |
42 | 39 | <!-- 프로필 사진 API 필요 --> |
43 | 40 | <div class="w-[40px] h-[40px] rounded-full bg-zinc-100" /> |
44 | 41 | <div class="px-3"> |
45 | | - <p class="text-xs">{{ name }}</p> |
46 | | - <p class="text-sm">{{ nickname }}</p> |
| 42 | + <p class="text-xs text-body font-bold">{{ name }}</p> |
| 43 | + <p class="text-sm text-black">{{ nickname }}</p> |
47 | 44 | </div> |
48 | 45 | </div> |
49 | | - <div class="flex items-end justify-end w-full py-1"> |
| 46 | + <div class="flex items-end justify-end w-full"> |
50 | 47 | <RouterLink |
51 | 48 | to="/" |
52 | | - class="text-primary1 text-sm" |
| 49 | + class="text-primary1 text-sm font-bold" |
53 | 50 | >내 정보 수정</RouterLink |
54 | 51 | > |
55 | 52 | </div> |
|
0 commit comments