summaryrefslogtreecommitdiff
path: root/components/information/information-client.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'components/information/information-client.tsx')
-rw-r--r--components/information/information-client.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/information/information-client.tsx b/components/information/information-client.tsx
index e2d273e5..48bb683d 100644
--- a/components/information/information-client.tsx
+++ b/components/information/information-client.tsx
@@ -261,7 +261,7 @@ export function InformationClient({ initialData = [] }: InformationClientProps)
<div className="flex items-center justify-between gap-4">
<div className="flex items-center gap-4">
<div className="relative flex-1 max-w-md">
- <Search className="absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-400 h-4 w-4" />
+ <Search className="absolute left-3 top-1/2 transform -translate-y-1/2 text-muted-foreground h-4 w-4" />
<Input
placeholder="페이지명이나 경로로 검색..."
value={searchQuery}
@@ -354,7 +354,7 @@ export function InformationClient({ initialData = [] }: InformationClientProps)
</TableRow>
) : filteredAndSortedInformations.length === 0 ? (
<TableRow>
- <TableCell colSpan={7} className="text-center py-8 text-gray-500">
+ <TableCell colSpan={7} className="text-center py-8 text-muted-foreground">
정보가 없습니다.
</TableCell>
</TableRow>
@@ -376,7 +376,7 @@ export function InformationClient({ initialData = [] }: InformationClientProps)
</TableCell>
<TableCell>
<div
- className="max-w-[300px] text-sm text-gray-600 line-clamp-2"
+ className="max-w-[300px] text-sm text-muted-foreground line-clamp-2"
dangerouslySetInnerHTML={{
__html: information.informationContent?.substring(0, 100) + '...' || ''
}}