From 9393f86c66a40b728559b7b698cc5bef7c491807 Mon Sep 17 00:00:00 2001 From: Jaanus Sellin Date: Wed, 27 Mar 2024 15:51:11 +0200 Subject: [PATCH] feat: padding last seen (#6716) --- .../common/Table/cells/FeatureSeenCell/LastSeenTooltip.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/component/common/Table/cells/FeatureSeenCell/LastSeenTooltip.tsx b/frontend/src/component/common/Table/cells/FeatureSeenCell/LastSeenTooltip.tsx index 09ff8e1bcc..daa4f8e8f3 100644 --- a/frontend/src/component/common/Table/cells/FeatureSeenCell/LastSeenTooltip.tsx +++ b/frontend/src/component/common/Table/cells/FeatureSeenCell/LastSeenTooltip.tsx @@ -38,10 +38,11 @@ const StyledDescriptionBlockHeader = styled('p')(({ theme }) => ({ width: '40%', justifyContent: 'flex-start', })); -const StyledValueContainer = styled('div')({ +const StyledValueContainer = styled('div')(({ theme }) => ({ width: '40%', justifyContent: 'center', -}); + padding: theme.spacing(0, 1, 0, 1), +})); const StyledDescriptionSubHeader = styled('p')(({ theme }) => ({ fontSize: theme.fontSizes.smallBody,