Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 71fd596

Browse files
committed
fix(desktop): styling tweaks
1 parent c02230d commit 71fd596

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

packages/desktop/src/components/prompt-input.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,11 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
345345
return (
346346
<div class="relative size-full _max-h-[320px] flex flex-col gap-3">
347347
<Show when={store.popoverIsOpen}>
348-
<div class="absolute inset-x-0 -top-3 -translate-y-full origin-bottom-left max-h-[252px] min-h-10 overflow-y-auto flex flex-col p-2 pb-0 rounded-2xl border border-border-base bg-surface-raised-stronger-non-alpha shadow-md">
348+
<div
349+
class="absolute inset-x-0 -top-3 -translate-y-full origin-bottom-left max-h-[252px] min-h-10
350+
overflow-auto no-scrollbar flex flex-col p-2 pb-0 rounded-2xl
351+
border border-border-base bg-surface-raised-stronger-non-alpha shadow-md"
352+
>
349353
<Show when={flat().length > 0} fallback={<div class="text-text-weak px-2">No matching files</div>}>
350354
<For each={flat()}>
351355
{(i) => (

packages/desktop/src/pages/session.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -725,15 +725,12 @@ export default function Page() {
725725
</div>
726726
</Tabs.Content>
727727
<Show when={local.layout.review.state() === "tab" && session.diffs().length}>
728-
<Tabs.Content value="review" class="select-text">
728+
<Tabs.Content value="review" class="select-text mt-8">
729729
<div
730730
classList={{
731731
"relative px-6 py-2 w-full flex flex-col gap-6 flex-1 min-h-0": true,
732732
}}
733733
>
734-
<div class="h-8 w-full flex items-center justify-between shrink-0 self-stretch sticky top-0 bg-background-stronger z-100">
735-
<div class="flex items-center gap-x-3"></div>
736-
</div>
737734
<div class="text-14-medium text-text-strong">All changes</div>
738735
<div class="h-full pb-40 overflow-y-auto no-scrollbar">
739736
<Accordion class="w-full" multiple>

0 commit comments

Comments
 (0)