fix: awesomelist grid to 3 columns

This commit is contained in:
jae 2026-04-04 02:36:36 +00:00
parent 7051f1f6c9
commit d51c8f8c68

View file

@ -139,7 +139,7 @@
/* ─── Sector Grid ──────────────────────────────────────── */
.al-sector-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
margin-bottom: 2rem;
}
@ -235,7 +235,7 @@
/* ─── List Cards (inside sector) ───────────────────────── */
.al-list-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-columns: repeat(3, 1fr);
gap: 0.8rem;
margin-bottom: 2rem;
}
@ -318,7 +318,7 @@
/* ─── Subcategory Cards (inside list detail) ───────────── */
.al-sub-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-columns: repeat(3, 1fr);
gap: 0.6rem;
margin-bottom: 1rem;
}