Skip to content

Commit 3653e6f

Browse files
committed
fix layout bug
1 parent 99ad46e commit 3653e6f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

frontend/views/GenSpace.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -437,15 +437,15 @@ function PromptBar({
437437
}
438438
/>
439439
{seedLocked && (
440-
<div className="flex items-center gap-1.5 ml-1 rounded-md bg-zinc-800/50 px-2 py-1">
440+
<div className="flex items-center gap-1 ml-1 rounded-md bg-zinc-800/50 px-1 py-1">
441441
<input
442442
type="number"
443443
min="0"
444444
max="2147483647"
445445
value={lockedSeed}
446446
onChange={(e) => onLockedSeedChange(parseInt(e.target.value, 10) || 0)}
447-
className="w-24 bg-transparent text-zinc-300 font-medium focus:outline-none"
448-
placeholder="Seed"
447+
className="w-12 bg-transparent text-zinc-300 font-medium focus:outline-none"
448+
placeholder="S"
449449
/>
450450
<button
451451
type="button"
@@ -624,7 +624,7 @@ function PromptBar({
624624
</div>
625625

626626
{/* Bottom row: Mode selector + Settings */}
627-
<div className="flex flex-wrap items-center gap-0.5 px-1.5 py-1.5 border-t border-zinc-800/60 text-xs text-zinc-400">
627+
<div className="flex flex-nowrap items-center gap-0.5 px-1.5 py-1.5 border-t border-zinc-800/60 text-xs text-zinc-400">
628628
{/* Mode dropdown */}
629629
<SettingsDropdown
630630
title="MODE"

0 commit comments

Comments
 (0)