Skip to content

Commit 9730b18

Browse files
shettigarcclaude
andcommitted
fix(index): use single-column grid to eliminate ghost cells
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent bdb45fe commit 9730b18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
/* Guide Grid */
145145
.guide-grid {
146146
display: grid;
147-
grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
147+
grid-template-columns: 1fr;
148148
gap: 1px;
149149
background: var(--border);
150150
border: 1px solid var(--border);

scripts/build-index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ function generateIndexHtml(guides) {
242242
/* Guide Grid */
243243
.guide-grid {
244244
display: grid;
245-
grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
245+
grid-template-columns: 1fr;
246246
gap: 1px;
247247
background: var(--border);
248248
border: 1px solid var(--border);

0 commit comments

Comments
 (0)