Adjust dashboard grid row height in LoggedInView for improved layout: Change grid-auto-rows from 420px to 200px to enhance responsiveness and better accommodate dynamic content.

This commit is contained in:
Torsten Schulz (local)
2026-01-30 09:54:55 +01:00
parent 05868d8a09
commit ddefc2737b

View File

@@ -374,7 +374,7 @@ export default {
.dashboard-grid { .dashboard-grid {
display: grid; display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
grid-auto-rows: 420px; grid-auto-rows: 200px;
gap: 20px; gap: 20px;
} }