Skip to content

Commit

Permalink
fix: login button overlap issue (#987)
Browse files Browse the repository at this point in the history
* fix: login buttor overlap issue
* fix: use justify-between instead of grid, negative margin
  • Loading branch information
irfanfaraaz authored Oct 6, 2023
1 parent 78ade88 commit 3d6245b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ui/Bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ Bar.BG_DARK = 'bg-slate-800'
Bar.JUSTIFY_LEFT = 'flex no-wrap justify-start items-center'
Bar.JUSTIFY_RIGHT = 'flex no-wrap justify-end items-center'
Bar.JUSTIFY_BETWEEN = 'flex no-wrap justify-between items-center w-full'
Bar.GRID3 = 'w-full flex flex-row flex-nowrap md:grid md:grid md:grid-cols-3 md:auto-cols-max items-center'
Bar.GRID3 = 'w-full flex flex-row flex-nowrap justify-between gap-4 items-center'
Bar.PX_DEFAULT = 'px-2 md:px-6'
Bar.PX_DEFAULT_LG = 'px-6'
2 changes: 1 addition & 1 deletion src/components/ui/DesktopNavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function DesktopNavBar ({ branding, search, navList }: DesktopApp
>
<div className='w-fit'>{branding}</div>

<div className='w-9/12 2xl:w-full'>
<div className='w-2/5'>
{search}
</div>

Expand Down

1 comment on commit 3d6245b

@vercel
Copy link

@vercel vercel bot commented on 3d6245b Oct 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.