From ebcec3f296d1d27943caf8a3aed26efef117cdc5 Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Tue, 9 Sep 2025 06:51:44 +0000 Subject: (김준회) 돌체 관련, 다크모드 지원하도록 개선 - 가능하면 시멘틱 색상 사용(muted, muted-foreground) - 어려운 컬러는 dark: 변수로 다크모드 클래스 지정 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/information/information-button.tsx | 30 +++++++++++++-------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'components/information/information-button.tsx') diff --git a/components/information/information-button.tsx b/components/information/information-button.tsx index 1c6d4e7a..2cff96d0 100644 --- a/components/information/information-button.tsx +++ b/components/information/information-button.tsx @@ -231,8 +231,8 @@ export function InformationButton({
{isLoading ? (
- - 정보를 불러오는 중... + + 정보를 불러오는 중...
) : (
@@ -241,23 +241,23 @@ export function InformationButton({

공지사항

{notices.length > 0 && ( - {notices.length}개 + {notices.length}개 )}
{notices.length > 0 ? ( -
+
{notices.map((notice) => (
handleNoticeClick(notice)} >
{notice.title}
-
+
{formatDate(notice.createdAt, "KR")} {notice.authorName && ( {notice.authorName} @@ -269,8 +269,8 @@ export function InformationButton({
) : ( -
-
+
+
공지사항이 없습니다
@@ -293,13 +293,13 @@ export function InformationButton({ )}
-
+
{information?.informationContent ? ( -
+
{information.informationContent}
) : ( -
+
안내사항이 없습니다
)} @@ -311,10 +311,10 @@ export function InformationButton({

첨부파일

{information?.attachments && information.attachments.length > 0 && ( - {information.attachments.length}개 + {information.attachments.length}개 )}
-
+
{information?.attachments && information.attachments.length > 0 ? (
{information.attachments.map((attachment) => ( @@ -330,7 +330,7 @@ export function InformationButton({
{attachment.fileSize && ( -
+
{prettyBytes(Number(attachment.fileSize))}
)} @@ -362,7 +362,7 @@ export function InformationButton({ ))}
) : ( -
+
첨부파일이 없습니다
)} -- cgit v1.2.3