From 228c1ac0696b39eee6d025cd2c91f07d8d57df5a Mon Sep 17 00:00:00 2001 From: Wesley Bomar Date: Tue, 5 Sep 2023 17:47:56 -0500 Subject: [PATCH] fix: system status should not have horz. scrollbar --- .../src/system-status/details/SystemDetails.module.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libs/tup-components/src/system-status/details/SystemDetails.module.css b/libs/tup-components/src/system-status/details/SystemDetails.module.css index 4d3708fa0..66eafa9d1 100644 --- a/libs/tup-components/src/system-status/details/SystemDetails.module.css +++ b/libs/tup-components/src/system-status/details/SystemDetails.module.css @@ -6,12 +6,17 @@ /* To reproduce complex layout of design doc */ @media (--wide-and-above) { gap: 25px; - grid-template-columns: 0.5fr 0.5fr; grid-template-rows: auto 1fr; grid-template-areas: "monitor avgwait" "queue avgwait"; } + @media (--wide-to-x-wide) { + grid-template-columns: 0.75fr 0.25fr; + } + @media (--x-wide-and-above) { + grid-template-columns: 0.5fr 0.5fr; + } /* To reproduce simple layout of narrow screens like CEPv2 */ @media (--wide-and-below) { row-gap: 25px;