aboutsummaryrefslogtreecommitdiff
path: root/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreenDragOverlay.svelte
blob: ab4adb2c2922308a7451da609c20e559607f886c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script>
	import { Upload } from '@lucide/svelte';
</script>

<div
	class="pointer-events-none fixed inset-0 z-50 flex items-center justify-center bg-black/50 backdrop-blur-sm"
>
	<div
		class="flex flex-col items-center justify-center rounded-2xl border-2 border-dashed border-border bg-background p-12 shadow-lg"
	>
		<Upload class="mb-4 h-12 w-12 text-muted-foreground" />

		<p class="text-lg font-medium text-foreground">Attach a file</p>

		<p class="text-sm text-muted-foreground">Drop your files here to upload</p>
	</div>
</div>