Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/media/MediaUploader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ export function MediaUploader({
{source === 'upload' && (
<div
{...getRootProps()}
className={`border-2 border-dashed rounded-lg p-6 text-center cursor-pointer transition-colors ${
className={`border-2 border-dashed rounded-lg p-6 text-center cursor-pointer transition-colors min-h-[128px] flex flex-col items-center justify-center ${
isDragActive
? 'border-orange-500 dark:border-brand-orange bg-orange-500/10 dark:bg-brand-orange/15'
: 'border-neutral-200 dark:border-white/8'
Expand All @@ -342,7 +342,7 @@ export function MediaUploader({
<input {...getInputProps()} aria-label="file uploader" />
</span>
{hasImage ? (
<div className="flex items-center gap-4">
<div className="flex items-center gap-4 w-full">
<img
src={thumbnailSrc}
alt="uploaded"
Expand Down
Loading