fix(settings): add bottom padding to settings sidebar (#6097)

This commit is contained in:
Waleed
2026-07-30 11:44:24 -07:00
committed by GitHub
parent 32293f4b55
commit d95127da67
2 changed files with 2 additions and 2 deletions
@@ -307,7 +307,7 @@ export function SettingsSidebar({
<div
ref={isCollapsed ? undefined : scrollContainerRef}
className={cn(
'flex flex-1 flex-col overflow-y-auto overflow-x-hidden border-t pt-1.5 transition-colors duration-150',
'flex flex-1 flex-col overflow-y-auto overflow-x-hidden border-t pt-1.5 pb-2 transition-colors duration-150',
!hasOverflowTop && 'border-transparent'
)}
>
@@ -126,7 +126,7 @@ export function SettingsSidebar<Section extends SettingsSection>({
<div
ref={isCollapsed ? undefined : scrollContainerRef}
className={cn(
'flex flex-1 flex-col overflow-y-auto overflow-x-hidden border-t py-1.5 transition-colors duration-150',
'flex flex-1 flex-col overflow-y-auto overflow-x-hidden border-t pt-1.5 pb-2 transition-colors duration-150',
!hasOverflowTop && 'border-transparent'
)}
>