We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e4ca71 commit b8b0571Copy full SHA for b8b0571
src/components/DropZone.css
@@ -36,6 +36,12 @@
36
margin-top: 0.5rem;
37
}
38
39
+.drop-format-hint {
40
+ color: #444;
41
+ font-size: 0.7rem;
42
+ margin-top: 0.75rem;
43
+}
44
+
45
.drop-zone input {
46
display: none;
47
src/components/DropZone.tsx
@@ -34,6 +34,7 @@ export function DropZone({ onFile }: DropZoneProps) {
34
<div className="drop-icon">🎬</div>
35
<div className="drop-text">Drag & drop a video here</div>
<div className="drop-hint">or click to browse</div>
+ <div className="drop-format-hint">MP4 recommended for best casting compatibility</div>
<input
ref={inputRef}
type="file"
0 commit comments