fix: move generate button into App Details card, stretch to full height

App Details card is now flex-1 min-h-0 so it fills the remaining left
column height, matching the right panel. Generate/Reset buttons are
pinned at the bottom of the card with a border-t divider.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-01 08:33:28 +01:00
parent 4927fb9a93
commit 7da20c37c1

View File

@@ -116,11 +116,11 @@ export function FaviconGenerator() {
</div> </div>
{/* App config */} {/* App config */}
<div className="glass rounded-xl p-4 shrink-0"> <div className="glass rounded-xl p-4 flex-1 min-h-0 flex flex-col overflow-hidden">
<span className="text-[10px] font-semibold text-muted-foreground uppercase tracking-widest block mb-3"> <span className="text-[10px] font-semibold text-muted-foreground uppercase tracking-widest block mb-3 shrink-0">
App Details App Details
</span> </span>
<div className="space-y-3"> <div className="space-y-3 flex-1 min-h-0 overflow-y-auto scrollbar-thin scrollbar-thumb-primary/20 scrollbar-track-transparent pr-0.5">
<div> <div>
<label className="text-[10px] text-muted-foreground/60 font-mono mb-1.5 block">App Name</label> <label className="text-[10px] text-muted-foreground/60 font-mono mb-1.5 block">App Name</label>
<input <input
@@ -179,25 +179,25 @@ export function FaviconGenerator() {
</div> </div>
</div> </div>
</div> </div>
</div>
{/* Action buttons */} {/* Action buttons */}
<div className="flex gap-2 shrink-0 mt-auto"> <div className="flex gap-2 shrink-0 pt-3 mt-3 border-t border-border/25">
{result && ( {result && (
<button onClick={handleReset} className={cn(actionBtn, 'px-4')}> <button onClick={handleReset} className={cn(actionBtn, 'px-4')}>
Reset Reset
</button>
)}
<button
onClick={handleGenerate}
disabled={!sourceFile || isGenerating}
className={cn(actionBtn, 'flex-1 py-2.5')}
>
{isGenerating
? <><Loader2 className="w-3 h-3 animate-spin" /> Generating {progress}%</>
: 'Generate Favicons'
}
</button> </button>
)} </div>
<button
onClick={handleGenerate}
disabled={!sourceFile || isGenerating}
className={cn(actionBtn, 'flex-1 py-2.5')}
>
{isGenerating
? <><Loader2 className="w-3 h-3 animate-spin" /> Generating {progress}%</>
: 'Generate Favicons'
}
</button>
</div> </div>
</div> </div>