summaryrefslogtreecommitdiff
path: root/components/ui/file-list.tsx
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-08-13 11:05:09 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-08-13 11:05:09 +0000
commit33be47506f0aa62b969d82521580a29e95080268 (patch)
tree6b7e232f2d78ef8775944ea085a36b3ccbce7d95 /components/ui/file-list.tsx
parent2ac95090157c355ea1bd0b8eb1e1e5e2bd56faf4 (diff)
(대표님) 입찰, 법무검토, EDP 변경사항 대응, dolce 개선, form-data 개선, 정규업체 등록관리 추가
(최겸) pq 미사용 컴포넌트 및 페이지 제거, 파일 라우트에 pq 적용
Diffstat (limited to 'components/ui/file-list.tsx')
-rw-r--r--components/ui/file-list.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/ui/file-list.tsx b/components/ui/file-list.tsx
index b6ade7f5..b469a08e 100644
--- a/components/ui/file-list.tsx
+++ b/components/ui/file-list.tsx
@@ -23,7 +23,7 @@ export const FileListItem = React.forwardRef<
<div
ref={ref}
className={cn(
- "grid gap-4 rounded-xl border bg-card p-4 text-card-foreground shadow",
+ "flex items-center justify-between gap-4 rounded-xl border bg-card p-4 text-card-foreground shadow",
className
)}
{...props}
@@ -64,7 +64,7 @@ export const FileListInfo = React.forwardRef<
React.ElementRef<"div">,
React.ComponentPropsWithoutRef<"div">
>(({ className, ...props }, ref) => (
- <div ref={ref} className={cn("grid flex-1 gap-1", className)} {...props} />
+ <div ref={ref} className={cn("flex flex-1 items-center gap-2", className)} {...props} />
))
FileListInfo.displayName = "FileListInfo"