Skip to content

Commit 24ff561

Browse files
authored
Merge pull request #1309 from w3bdesign/develop
Category design
2 parents 715f202 + b523a76 commit 24ff561

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Category/Categories.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ interface ICategoriesProps {
77

88
const Categories = ({ categories }: ICategoriesProps) => (
99
<section className="container mx-auto bg-white">
10-
<div className="grid gap-2 px-2 pt-2 pb-2 lg:px-0 xl:px-0 md:px-0 lg:grid-cols-4 sm:grid-cols-2 md:grid-cols-3 xs:grid-cols-3">
10+
<div className="grid gap-2 px-2 pt-2 pb-2 lg:px-0 xl:px-0 md:px-0 lg:grid-cols-3 sm:grid-cols-1 md:grid-cols-3 xs:grid-cols-3">
1111
{categories.map(({ id, name, slug }) => (
1212
<Link
1313
key={uuidv4()}

0 commit comments

Comments
 (0)