Skip to content
Open
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
2 changes: 1 addition & 1 deletion web/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ function App() {

return (
<PromptInputProvider>
<div className="box-border flex h-[100dvh] flex-col bg-background text-foreground px-[calc(0.75rem+var(--safe-left))] pr-[calc(0.75rem+var(--safe-right))] pt-[calc(0.75rem+var(--safe-top))] pb-1 lg:pb-[calc(0.75rem+var(--safe-bottom))] max-lg:h-[100svh] max-lg:overflow-hidden">
<div className="box-border flex h-dvh flex-col bg-background text-foreground pl-(--safe-left) pr-(--safe-right) pt-(--safe-top) pb-(--safe-bottom) max-lg:h-svh max-lg:overflow-hidden">
<div className="mx-auto flex h-full min-h-0 w-full flex-1 flex-col gap-2 max-w-none">
{isDesktop ? (
<ResizablePanelGroup
Expand Down
6 changes: 3 additions & 3 deletions web/src/features/sessions/sessions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function SessionsListComponent(
) {
const { className, ...rest } = props;
return (
<div ref={ref} className={cn("flex flex-col space-y-0.5 w-full px-2 mt-1", className)} {...rest} />
<div ref={ref} className={cn("flex flex-col gap-1 w-full px-2 mt-1!", className)} {...rest} />
);
}

Expand Down Expand Up @@ -804,10 +804,10 @@ export const SessionsSidebar = memo(function SessionsSidebarComponent({
<Search className="absolute left-2.5 top-1/2 size-3.5 -translate-y-1/2 text-muted-foreground" />
<input
type="text"
placeholder="Search sessions..."
placeholder="Search sessions"
value={sessionSearch}
onChange={(e) => setSessionSearch(e.target.value)}
className="h-8 w-full rounded-md border border-input bg-background pl-8 pr-8 text-xs placeholder:text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring"
className="h-8 w-full rounded-md border border-input bg-background pl-8 pr-8 truncate text-xs placeholder:text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring"
/>
{sessionSearch && (
<button
Expand Down
Loading