We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 715f202 + b523a76 commit 24ff561Copy full SHA for 24ff561
src/components/Category/Categories.component.tsx
@@ -7,7 +7,7 @@ interface ICategoriesProps {
7
8
const Categories = ({ categories }: ICategoriesProps) => (
9
<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">
+ <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">
11
{categories.map(({ id, name, slug }) => (
12
<Link
13
key={uuidv4()}
0 commit comments