Skip to content

Commit 5458cff

Browse files
committed
fix(webapp): composer send/stop back to items-end, 28px buttons
1 parent ce3da49 commit 5458cff

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/webapp/app/components/dashboard-agent/DashboardAgentComposer.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export function DashboardAgentComposer({
6565
variant="minimal/small"
6666
// Filled neutral, not transparent: a white glyph needs a surface on the
6767
// light theme too. Raw charcoal is deliberately theme-stable here.
68-
className="aspect-square h-6 min-w-0 bg-charcoal-600 p-1 hover:bg-charcoal-550"
68+
className="aspect-square h-7 min-w-0 bg-charcoal-600 p-1 hover:bg-charcoal-550"
6969
aria-label="Stop generating"
7070
tooltip="Stop generating"
7171
onClick={onStop}
@@ -74,7 +74,7 @@ export function DashboardAgentComposer({
7474
) : (
7575
<Button
7676
variant="primary/small"
77-
className="aspect-square h-6 min-w-0 p-1"
77+
className="aspect-square h-7 min-w-0 p-1"
7878
aria-label="Send"
7979
tooltip="Send"
8080
onClick={onSubmit}
@@ -101,7 +101,7 @@ export function DashboardAgentComposer({
101101
isHero ? "rounded-lg p-2" : "rounded-md p-1"
102102
)}
103103
>
104-
<div className={isHero ? "flex flex-col gap-1.5" : "flex items-center gap-1"}>
104+
<div className={isHero ? "flex flex-col gap-1.5" : "flex items-end gap-1"}>
105105
{/* Docked: one text line tall at rest (matches the button height),
106106
growing with content up to the cap. Hero: three lines at rest, the
107107
same growth. rows + field-sizing-content do the work. */}

0 commit comments

Comments
 (0)