Skip to content

Commit 51877ff

Browse files
committed
fix: adjust roadmap component layout for different browsers
1 parent 34219f1 commit 51877ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/[locale]/roadmap/_components/roadmap.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,11 +134,11 @@ const RoadmapPage = () => {
134134
from its current form into a fully scaled, maximally resilient
135135
platform.
136136
</p>
137-
<div className="grid grid-cols-1 gap-6 md:grid-cols-2 xl:grid-cols-4">
137+
<div className="grid grid-cols-1 items-stretch gap-6 md:grid-cols-2 xl:grid-cols-4">
138138
{changesComingItems.map((item) => (
139139
<div
140140
key={item.title}
141-
className="bg-roadmap-card-gradient flex h-full flex-col gap-4 rounded-3xl border p-6"
141+
className="bg-roadmap-card-gradient flex flex-col gap-4 rounded-3xl border p-6"
142142
>
143143
<div className="flex flex-row items-center justify-between gap-4">
144144
<h3 className="m-0">{item.title}</h3>

0 commit comments

Comments
 (0)