Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Commit 72c816c

Browse files
committed
refactor: adjust heading styles in CollectionFilters for tighter spacing and improved visual consistency
1 parent 1c991b8 commit 72c816c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/sections/collection-filters/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const CollectionFilters = forwardRef<HTMLElement, CollectionFiltersProps>(
8484
{showBreadcrumb && (
8585
<BreadCrumb page={collection.title} className="mb-2.5" />
8686
)}
87-
<h4 className="md:hidden block uppercase tracking-tight">{collection.title}</h4>
87+
<h4 className="md:hidden block uppercase tracking-tighter">{collection.title}</h4>
8888
{showDescription && collection.description && (
8989
<p className="text-body-subtle mt-2.5">
9090
{collection.description}

app/sections/collection-filters/tools-bar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function ToolsBar({
3333
<div className="py-3">
3434
<div className="gap-4 md:gap-8 flex w-full items-center justify-between h-full">
3535
<div className="md:block hidden h-full space-y-3.5">
36-
<h4 className="uppercase tracking-tight">{collection.title}</h4>
36+
<h4 className="uppercase tracking-tighter">{collection.title}</h4>
3737
{showProductsCount && (
3838
<span className="hidden md:inline uppercase">
3939
products ({collection?.products.nodes.length})

0 commit comments

Comments
 (0)