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
22 changes: 6 additions & 16 deletions apps/web/src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ import {
GitBranchIcon,
GitMergeIcon,
GitPullRequestIcon,
HomeIcon,
LinkIcon,
PanelLeftCloseIcon,
PlusIcon,
Expand Down Expand Up @@ -140,7 +141,6 @@ import {
SidebarMenuSub,
SidebarMenuSubButton,
SidebarMenuSubItem,
SidebarSeparator,
SidebarTrigger,
useSidebar,
} from "./ui/sidebar";
Expand Down Expand Up @@ -2474,7 +2474,6 @@ export default function Sidebar() {
</SidebarGroup>
</SidebarContent>

<SidebarSeparator />
<SidebarFooter className="p-2">
<SidebarMenu>
{isOnSubPage ? (
Expand Down Expand Up @@ -2506,8 +2505,8 @@ export default function Sidebar() {
className="gap-2 px-2 py-1.5 text-muted-foreground/70 hover:bg-accent hover:text-foreground"
onClick={() => void navigate({ to: "/" })}
>
<ChevronRightIcon className="size-3.5" />
<span className="text-xs">Projects</span>
<HomeIcon className="size-3.5" />
<span className="text-xs">Home</span>
</SidebarMenuButton>
</SidebarMenuItem>
{hasWorktreeCleanupCandidates ? (
Expand Down Expand Up @@ -2561,18 +2560,9 @@ export default function Sidebar() {
{APP_BASE_NAME}
</span>
</div>
<div className="ml-auto flex shrink-0 items-center gap-2">
<span
className="inline-flex items-center gap-1 rounded-full px-2 py-1 text-[10px] font-semibold uppercase tracking-[0.18em]"
style={brandFooterStatus.pillStyle}
>
<CircleDotIcon className="size-2.5" />
{brandFooterStatus.label}
</span>
<span className="text-[10px] font-medium tracking-wide text-muted-foreground/80">
v{APP_VERSION}
</span>
</div>
<span className="ml-auto shrink-0 text-[10px] font-medium tracking-wide text-muted-foreground/80">
v{APP_VERSION}
</span>
</div>
</button>
}
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/routes/_chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ function ChatRouteLayout() {
collapsible="offcanvas"
// Keep the primary sidebar on a simpler paint path. The blur layer is
// visually nice, but it is also the most likely source of display-only shimmer.
className="border-r-2 border-border/60 bg-card/80 text-foreground shadow-[2px_0_12px_-4px_rgba(0,0,0,0.08)] dark:border-border/40 dark:bg-card/60 dark:shadow-[2px_0_16px_-4px_rgba(0,0,0,0.3)]"
className="bg-card/80 text-foreground shadow-[2px_0_12px_-4px_rgba(0,0,0,0.08)] dark:bg-card/60 dark:shadow-[2px_0_16px_-4px_rgba(0,0,0,0.3)]"
style={
{
"--sidebar-background-opacity": settings.sidebarOpacity,
Expand Down
Loading