Skip to content

Commit b523a76

Browse files
committed
Update Categories.component.tsx
1 parent 4c20ab9 commit b523a76

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-3 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)