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
2 changes: 1 addition & 1 deletion apps/web/src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4323,7 +4323,7 @@ export default function Sidebar() {
fixedHeader={
// Lifted above the stage backdrop, whose fade bleeds below the
// header and would otherwise paint across the search row's outline.
<SidebarGroup className="relative z-[1] p-[var(--sidebar-content-inset)]">
<SidebarGroup className="relative z-[1] p-[var(--sidebar-content-inset)] pt-1">
<SidebarThreadHeader
searchFieldRef={headerSearchRef}
hasProjects={projectGroups.length > 0}
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/settings/SettingsSidebarNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ export function SettingsSidebarNav({ pathname }: { pathname: string }) {
)}
</SidebarGroup>
</SidebarContent>
<SidebarFooter className="p-[var(--sidebar-content-inset)]">
<SidebarFooter className="px-[var(--sidebar-content-inset)] py-1">
<Suspense fallback={null}>
<T3ConnectSidebarSignIn />
</Suspense>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/sidebar/SidebarChrome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export const SidebarUtilityMenu = memo(function SidebarUtilityMenu() {

export const SidebarChromeFooter = memo(function SidebarChromeFooter() {
return (
<SidebarFooter className="p-[var(--sidebar-content-inset)]">
<SidebarFooter className="px-[var(--sidebar-content-inset)] py-1">
<SidebarProviderUpdatePill />
<SidebarUpdateArchitectureWarning />
<SidebarUtilityMenu />
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/ui/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ function SidebarContent({
hideScrollbars
scrollFade
scrollFadePadding={false}
className="h-auto min-h-0 flex-1"
className="h-auto min-h-0 flex-1 [&>[data-slot=scroll-area-viewport]]:[--fade-size:0.75rem]"
>
<div
// Reordered rows must not pull the viewport to their new position.
Expand Down
Loading