Skip to content

Commit b6a339e

Browse files
committed
Update for mobile
1 parent 95e834e commit b6a339e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • apps/site/src/components/ecosystem

apps/site/src/components/ecosystem/grid.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const EcosystemGrid = () => {
1010
const [activeFilter, setActiveFilter] = useState("show-all");
1111
return (
1212
<>
13-
<div className="flex gap-4 items-center justify-start mx-auto">
13+
<div className="flex gap-4 items-center justify-start mx-auto flex-col md:flex-row">
1414
<div className="text-foreground-neutral font-black text-lg uppercase font-sans-display">
1515
Filter by:
1616
</div>
@@ -43,7 +43,7 @@ export const EcosystemGrid = () => {
4343
<h3 className="text-foreground-neutral font-sans-display text-3xl stretch-display my-0 font-bold capitalize">
4444
{filter.replace("-", " ")}
4545
</h3>
46-
<div className="grid grid-cols-3 gap-4">
46+
<div className="grid lg:grid-cols-3! md:grid-cols-2 gap-4">
4747
{ecosystem.list
4848
.filter((box) => box.type === filter)
4949
.map((box) => (

0 commit comments

Comments
 (0)