fix(ui): dashboard panel heights + missing icon

- Use height: 480px on .dash-grid so both columns are the same height;
  side panels split that height via flex instead of their own max-height
- Add LayoutDashboard icon to the DASHBOARD page header
This commit is contained in:
2026-04-30 00:24:27 -04:00
parent fbc9877ef2
commit b364c41736
2 changed files with 9 additions and 6 deletions

View File

@@ -260,13 +260,14 @@
display: grid;
grid-template-columns: 2fr 1fr;
gap: 16px;
flex: 1;
min-height: 0;
height: 480px;
}
.dash-grid > .logs-section {
max-height: 480px;
overflow: hidden;
display: flex;
flex-direction: column;
min-height: 0;
}
.dash-grid > .logs-section .logs-table-container {
@@ -286,7 +287,6 @@
flex: 1;
min-height: 0;
overflow: hidden;
max-height: 300px;
}
.dash-side > .logs-section .panel-body {