mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-27 21:33:41 +02:00
When editors are empty, the internal drop overlay was too small to be useful. Move the overlay to the parent container with a lighter style so the drop target covers the full input area regardless of content. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
8 lines
213 B
TypeScript
8 lines
213 B
TypeScript
function FileDropOverlay() {
|
|
return (
|
|
<div className="absolute inset-0 z-10 rounded-[inherit] border border-dashed border-brand/20 bg-brand/[0.02] pointer-events-none" />
|
|
);
|
|
}
|
|
|
|
export { FileDropOverlay };
|