Skip to content

Commit

Permalink
UI improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Rigidity committed Dec 24, 2024
1 parent ab83c4a commit 2c03b6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function NavLink({ url, children }: PropsWithChildren<NavLinkProps>) {
return (
<Link
to={url}
className='flex items-center gap-3 rounded-lg px-3 py-1.5 text-muted-foreground transition-all hover:text-primary text-xl md:text-base'
className='flex items-center gap-3 rounded-lg px-3 py-1.5 text-muted-foreground transition-all hover:text-primary text-lg md:text-base'
>
{children}
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/components/selectors/DropdownSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function DropdownSelector<T>({
</DropdownMenuLabel>
)}
{manualInput && <div className='p-2'>{manualInput}</div>}
{!!setPage || (manualInput && <DropdownMenuSeparator />)}
{(!!setPage || manualInput) && <DropdownMenuSeparator />}
</>
<div className='max-h-[260px] overflow-y-auto'>
{loadedItems.length === 0 ? (
Expand Down

0 comments on commit 2c03b6d

Please sign in to comment.