Merge claude/1
This commit is contained in:
commit
eebfcc74a8
@ -3,7 +3,14 @@
|
|||||||
/* App center cards, grid, tags, and detail view. Extracted from style.css. */
|
/* App center cards, grid, tags, and detail view. Extracted from style.css. */
|
||||||
|
|
||||||
.apps-section {
|
.apps-section {
|
||||||
--app-min: 300px;
|
/* Track min-width is the lever for "how many columns at this viewport".
|
||||||
|
auto-fill picks floor((content + gap) / (--app-min + gap)) tracks, so
|
||||||
|
bumping --app-min from 300 to 328 pushes typical 1280px-class laptops
|
||||||
|
from 3 cols → 2 cols where the third column would have been the
|
||||||
|
orphan that ran into a half-empty last row. Wider monitors still hit
|
||||||
|
3+ cols (e.g. 1056px content fits 3 tracks of 328 with room to
|
||||||
|
spare), so density on bigger screens is unchanged. */
|
||||||
|
--app-min: 328px;
|
||||||
--app-gap: 20px;
|
--app-gap: 20px;
|
||||||
display: grid;
|
display: grid;
|
||||||
/* Fixed-width tracks so cards stay exactly --app-min wide regardless
|
/* Fixed-width tracks so cards stay exactly --app-min wide regardless
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user