From da2c81818e0cd72afcee982141774f4b2a4dcbb5 Mon Sep 17 00:00:00 2001 From: Proddy Date: Sun, 1 May 2022 16:02:48 +0200 Subject: [PATCH] table formatting --- interface/src/project/DashboardStatus.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/interface/src/project/DashboardStatus.tsx b/interface/src/project/DashboardStatus.tsx index c04005e6e..347e89163 100644 --- a/interface/src/project/DashboardStatus.tsx +++ b/interface/src/project/DashboardStatus.tsx @@ -124,20 +124,28 @@ const DashboardStatus: FC = () => { border-top: 1px solid transparent; border-right: 1px solid transparent; border-bottom: 1px solid transparent; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; &:nth-of-type(1) { + padding-left: 8px; flex: 1; } &:nth-of-type(2) { + min-width: 15%; + width: 15%; text-align: right; - min-width: 64px; } &:nth-of-type(3) { + min-width: 15%; + width: 15%; text-align: right; - min-width: 64px; } &:last-of-type { + min-width: 15%; + width: 15%; text-align: right; - min-width: 96px; + padding-right: 8px; } ` });