diff --git a/web/src/App.tsx b/web/src/App.tsx index 26db2bab7..9400928ee 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -360,7 +360,7 @@ function App() { return ( -
+
{isDesktop ? ( -
+
diff --git a/web/src/components/ai-elements/prompt-input.tsx b/web/src/components/ai-elements/prompt-input.tsx index 65497b58b..68f1afe77 100644 --- a/web/src/components/ai-elements/prompt-input.tsx +++ b/web/src/components/ai-elements/prompt-input.tsx @@ -1186,7 +1186,7 @@ export const PromptInputSubmit = ({ return ( ) { data-slot="input-group" role="group" className={cn( - "group/input-group border-input dark:bg-input/30 relative flex w-full items-center rounded-md border shadow-xs transition-[color,box-shadow] outline-none", + "group/input-group border-input dark:bg-input/30 relative flex w-full items-center rounded-3xl border shadow-xs transition-[color,box-shadow] outline-none", "h-9 min-w-0 has-[>textarea]:h-auto", // Variants based on alignment. @@ -46,9 +46,9 @@ const inputGroupAddonVariants = cva( "inline-end": "order-last pr-3 has-[>button]:mr-[-0.45rem] has-[>kbd]:mr-[-0.35rem]", "block-start": - "order-first w-full justify-start px-3 pt-3 [.border-b]:pb-3 group-has-[>input]/input-group:pt-2.5", + "order-first w-full justify-start px-2 pt-2 [.border-b]:pb-3 group-has-[>input]/input-group:pt-2.5", "block-end": - "order-last w-full justify-start px-3 pb-3 [.border-t]:pt-3 group-has-[>input]/input-group:pb-2.5", + "order-last w-full justify-start px-2 pb-2 [.border-t]:pt-3 group-has-[>input]/input-group:pb-2.5", }, }, defaultVariants: { diff --git a/web/src/features/chat/chat.tsx b/web/src/features/chat/chat.tsx index 467b1adfc..6ab3a1a35 100644 --- a/web/src/features/chat/chat.tsx +++ b/web/src/features/chat/chat.tsx @@ -285,7 +285,7 @@ export const ChatWorkspace = memo(function ChatWorkspaceComponent({ {/* Bottom area: Question Dialog replaces prompt composer when active */} {currentSession && ( -
+
{hasPendingQuestion ? ( ) : ( -
+
{isExpanded ? ( @@ -292,7 +292,7 @@ export const ChatPromptComposer = memo(function ChatPromptComposerComponent({
- + diff --git a/web/src/features/chat/global-config-controls.tsx b/web/src/features/chat/global-config-controls.tsx index 590287190..c2f9dc2a5 100644 --- a/web/src/features/chat/global-config-controls.tsx +++ b/web/src/features/chat/global-config-controls.tsx @@ -200,8 +200,8 @@ export function GlobalConfigControls({