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:
parent
d01fc57989
commit
9ea40198d0
|
|
@ -2,9 +2,9 @@
|
||||||
// DShieldPanel.module.scss
|
// DShieldPanel.module.scss
|
||||||
|
|
||||||
.row {
|
.row {
|
||||||
display: grid;
|
display: flex;
|
||||||
grid-template-columns: 1fr 1.2fr;
|
flex-direction: column;
|
||||||
gap: 12px;
|
gap: 8px;
|
||||||
padding: 4px 8px;
|
padding: 4px 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue