Skip to content

Commit

Permalink
Small visual tweaks. (#1137)
Browse files Browse the repository at this point in the history
  • Loading branch information
manovotny authored Aug 2, 2023
1 parent 1d5242e commit 0f700e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/search/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default async function SearchPage({
return (
<>
{searchValue ? (
<p>
<p className="mb-4">
{products.length === 0
? 'There are no products that match '
: `Showing ${products.length} ${resultsText} for `}
Expand Down
4 changes: 2 additions & 2 deletions components/layout/navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ export default async function Navbar() {
</div>
</Link>
{menu.length ? (
<ul className="hidden text-sm md:flex md:items-center">
<ul className="hidden gap-6 text-sm md:flex md:items-center">
{menu.map((item: Menu) => (
<li key={item.title}>
<Link
href={item.path}
className="mr-3 text-neutral-500 underline-offset-4 hover:text-black hover:underline dark:text-neutral-400 dark:hover:text-neutral-300 lg:mr-8"
className="text-neutral-500 underline-offset-4 hover:text-black hover:underline dark:text-neutral-400 dark:hover:text-neutral-300"
>
{item.title}
</Link>
Expand Down

1 comment on commit 0f700e2

@vercel
Copy link

@vercel vercel bot commented on 0f700e2 Aug 2, 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.