Skip to content

Commit 05c1ad0

Browse files
committed
Fix ecosystem grid to 3 columns for balanced 3x2 layout
The auto-fit minmax(200px) was creating 5 columns, causing module path text overflow and an orphaned 6th card. Fixed to repeat(3, 1fr) which gives a clean 3+3 grid matching the 6 ecosystem modules.
1 parent 665b72b commit 05c1ad0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@
139139

140140
/* Ecosystem */
141141
.eco{background:var(--bg)}
142-
.eco-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px}
142+
.eco-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
143+
@media(max-width:768px){.eco-grid{grid-template-columns:1fr}}
143144
.eco-card{display:block;background:var(--bg2);border:1px solid rgba(255,255,255,.06);border-radius:10px;padding:24px 20px;transition:border-color .2s}
144145
.eco-card:hover{border-color:rgba(6,182,212,.3)}
145146
.eco-card .mod{font-family:var(--mono);font-size:.8125rem;color:var(--cyan);margin-bottom:8px}

0 commit comments

Comments
 (0)