diff --git a/frontend/src/styles/app.css b/frontend/src/styles/app.css index 192e8a8..5587f7b 100644 --- a/frontend/src/styles/app.css +++ b/frontend/src/styles/app.css @@ -391,12 +391,18 @@ body { } .hardware-monitor-grid { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); + display: flex; + flex-direction: row; + flex-wrap: nowrap; gap: 0.75rem; align-items: start; } +.hardware-monitor-grid > .hardware-monitor-block { + flex: 1 1 0; + min-width: 0; +} + .hardware-monitor-block { border: 1px solid var(--rip-border); border-radius: 0.5rem;