Cap card grid at three columns

This commit is contained in:
2026-02-02 19:47:40 +01:00
parent f33545b184
commit 42ead722c6

View File

@@ -130,7 +130,16 @@ button.ghost { background: transparent; border-color: #d5c7b5; color: #2c1c0d; }
.hint.warning { color: #c26c1a; } .hint.warning { color: #c26c1a; }
.disabled-form { opacity: 0.5; pointer-events: none; } .disabled-form { opacity: 0.5; pointer-events: none; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; margin-top: 12px; } .card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 12px;
margin-top: 12px;
width: 100%;
max-width: 900px;
margin-inline: auto;
}
.results-grid { max-width: none; }
.game-card { .game-card {
background: #fffaf3; background: #fffaf3;