summaryrefslogtreecommitdiff
path: root/components/ui/file-list.tsx
diff options
context:
space:
mode:
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"