diff --git a/apps/web/src/components/ChatView.tsx b/apps/web/src/components/ChatView.tsx index 3c8a0a152..f856527ef 100644 --- a/apps/web/src/components/ChatView.tsx +++ b/apps/web/src/components/ChatView.tsx @@ -3812,7 +3812,7 @@ export default function ChatView({ threadId }: ChatViewProps) { "flex min-w-0 flex-1 items-center", isComposerFooterCompact ? "gap-1 overflow-hidden" - : "gap-1 overflow-x-auto [scrollbar-width:none] [&::-webkit-scrollbar]:hidden sm:min-w-max sm:overflow-visible", + : "gap-1 overflow-x-auto [scrollbar-width:none] [&::-webkit-scrollbar]:hidden", )} > {/* Provider/model picker */} diff --git a/apps/web/src/components/composerFooterLayout.ts b/apps/web/src/components/composerFooterLayout.ts index 3cf994fc1..533dd0849 100644 --- a/apps/web/src/components/composerFooterLayout.ts +++ b/apps/web/src/components/composerFooterLayout.ts @@ -1,5 +1,5 @@ export const COMPOSER_FOOTER_COMPACT_BREAKPOINT_PX = 620; -export const COMPOSER_FOOTER_WIDE_ACTIONS_COMPACT_BREAKPOINT_PX = 720; +export const COMPOSER_FOOTER_WIDE_ACTIONS_COMPACT_BREAKPOINT_PX = 800; export function shouldUseCompactComposerFooter( width: number | null,