Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export function CommandCenterToolbar({
onValueChange={(v) => setLayout(v as LayoutPreset)}
>
<Select.Trigger variant="ghost" className="text-[12px]" />
<Select.Content>
<Select.Content position="popper">
{LAYOUT_OPTIONS.map((opt) => (
<Select.Item key={opt.value} value={opt.value}>
<Flex align="center" gap="2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -563,10 +563,14 @@ export function SessionView({
</Flex>
</Flex>
) : hideInput ? null : firstPendingPermission ? (
<Box className="border-gray-4 border-t">
<Box className="max-h-1/2 min-h-0 overflow-y-auto border-gray-4 border-t">
<Box
className="mx-auto p-2"
style={{ maxWidth: CHAT_CONTENT_MAX_WIDTH }}
className={compact ? "p-1" : "mx-auto p-2"}
style={
compact
? undefined
: { maxWidth: CHAT_CONTENT_MAX_WIDTH }
}
>
<PermissionSelector
toolCall={firstPendingPermission.toolCall}
Expand Down
Loading