Skip to content

Commit

Permalink
fix: sidebar styling
Browse files Browse the repository at this point in the history
  • Loading branch information
nikkothari22 committed Dec 17, 2024
1 parent ba7fcae commit 73d962a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/layout/Sidebar/SidebarFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const SidebarFooter = () => {

const navigate = useNavigate()

return <Stack className='mx-auto py-2' align='center' gap='3'>
return <Stack className='mx-auto py-0' align='center' gap='3'>
<Box>
<Tooltip content="Workspace Explorer" side='right'>
<IconButton aria-label='Workspace Explorer' size='3' color='gray' variant='ghost' onClick={() => navigate('/workspace-explorer')}>
Expand All @@ -43,7 +43,7 @@ export const SidebarFooter = () => {
</Tooltip>
</Box>
<Separator size='4' className={`bg-gray-4 dark:bg-gray-6`} />
<Box className='pb-4 sm:pb-0'>
<Box className='pb-4 sm:pb-0 pt-2'>
<DropdownMenu.Root>
<Tooltip content="Options" side='right'>
<DropdownMenu.Trigger>
Expand Down

0 comments on commit 73d962a

Please sign in to comment.