Skip to content

Commit

Permalink
fix: StickyNavbar remove excessive horizontal padding
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdancho committed Mar 26, 2024
1 parent 28daf38 commit b3d5af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function LogoutButton({ className }: { className?: string }) {

function StickyNavbar({ className }: { className: string }) {
return (
<div className={cn('sticky bottom-0 z-50 bg-black-100 px-3 pb-3 pt-2', className)}>
<div className={cn('sticky bottom-0 z-50 bg-black-100 pb-3 pt-2', className)}>
<div className='rounded-b-xl border-b border-grey-20'>
<Navbar variant='horizontal' />
</div>
Expand Down

0 comments on commit b3d5af7

Please sign in to comment.