Fix notes grid columns: dashboard 2-per-row, notes list 3-per-row

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-03 21:58:31 -05:00
parent 5b07a3349b
commit 7fed77318d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -259,7 +259,7 @@ function onOffsetUpdate(offset: number) {
/* Grid layout */
.cards-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
grid-template-columns: repeat(3, 1fr);
gap: 0.75rem;
margin-top: 1rem;
}