Skip to content

Commit d8e9620

Browse files
claudeCoteh
authored andcommitted
Fix grid-auto-rows to reflect card height only, not card height + gap
gap is already handled separately by the gap property, so adding it to grid-auto-rows was double-counting it. https://claude.ai/code/session_01VZTorvD5TumdL6NiaAaQKV
1 parent c4e9226 commit d8e9620

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ body a > .commit-hash {
770770
.theme-cards {
771771
display: grid;
772772
grid-template-columns: repeat(auto-fit, 155px);
773-
grid-auto-rows: 220px;
773+
grid-auto-rows: 210px;
774774
justify-content: center;
775775
align-items: start;
776776
gap: 1rem;

0 commit comments

Comments
 (0)