Skip to content

Commit 602affd

Browse files
committed
♻️ [refactor] : 알림 모달 크기 확대 및 오타, 문구 수정
1 parent 2a29485 commit 602affd

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

src/components/top-bar/NotificationMessage.vue

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,15 @@
1111
class="flex flex-col text-xs gap-1"
1212
v-if="type === 'COMMENT'">
1313
<span>
14-
<span class="font-bold text-primary1">"{{ title }}""</span> 작업에 새로운 댓글이
14+
<span class="font-bold text-primary1">"{{ title }}"</span> 작업에 새로운 댓글이
1515
추가되었습니다
1616
</span>
17-
<span class="font-bold text-body">"{{ message }}"</span>
17+
<span class="font-bold text-body line-clamp-2">"{{ message }}"</span>
1818
</div>
1919
<div
20-
class="flex flex-col text-xs gap-1"
20+
class="text-xs"
2121
v-else-if="type === 'TASK_REQUESTED'">
22-
<span>새 작업이 요청되었습니다</span>
23-
<span class="font-bold text-primary1">"{{ title }}"</span>
22+
<span class="font-bold text-primary1">"{{ title }}"</span> 작업이 요청되었습니다
2423
</div>
2524
<div
2625
class="text-xs"

src/components/top-bar/NotificationModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div
33
v-if="isOpen"
44
@click.stop
5-
class="absolute right-6 top-[calc(100%+16px)] h-60 w-80 bg-white rounded-lg shadow-custom overflow-hidden flex flex-col">
5+
class="absolute right-6 top-[calc(100%+16px)] h-[400px] w-[400px] bg-white rounded-lg shadow-custom overflow-hidden flex flex-col">
66
<div class="flex justify-between items-center px-4 pt-3 pb-2 border-b border-border-2">
77
<p class="text-body font-bold text-xs">알림</p>
88
<div class="flex items-center gap-2">

0 commit comments

Comments
 (0)