Skip to content

Commit fc3c9ef

Browse files
authored
Merge pull request #1632 from onflow/cf/mobile-cards-fix
Mobile cards fix for responsiveness
2 parents b654b71 + cda87a7 commit fc3c9ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ui/design-system/src/lib/Pages/HomePage/GrowSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const GrowSection: React.FC = () => {
1717
<h2 className="text-2xl font-bold text-gray-900 dark:text-white m-0">Builder toolkit to start, grow, and win</h2>
1818
</div>
1919

20-
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4">
20+
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
2121
{cards.map((card, idx) => (
2222
<a
2323
key={idx}

src/ui/design-system/src/lib/Pages/HomePage/ToolsSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const ToolsSection: React.FC = () => {
1717
<h2 className="text-2xl font-bold text-gray-900 dark:text-white m-0">Tools</h2>
1818
</div>
1919

20-
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4">
20+
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
2121
{cards.map((card, idx) => (
2222
<a
2323
key={idx}

0 commit comments

Comments
 (0)