fix(monitor/frontend): stack DShield tables vertically (no horizontal overflow in 320px column)

Plan 5 said "two compact tables side-by-side" but didn't account for the
320px right-column width — tables overflowed and the source-IP table's
Reports/Tgt columns scrolled off-screen. Replaces grid 1fr 1.2fr with a
flex column so each table gets the full panel width: top ports on top,
top sources below.
This commit is contained in:
CarterPerez-dev 2026-05-03 09:16:58 -04:00
parent d01fc57989
commit 9ea40198d0
1 changed files with 3 additions and 3 deletions

View File

@ -2,9 +2,9 @@
// DShieldPanel.module.scss
.row {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 12px;
display: flex;
flex-direction: column;
gap: 8px;
padding: 4px 8px;
}