From db050f0ac4923a40ff1620ee00de68c6236120c3 Mon Sep 17 00:00:00 2001 From: Haider Alshamma Date: Thu, 5 Sep 2024 17:46:47 -0400 Subject: [PATCH] Fix visual defects --- src/StatusIndicator/StatusIndicator.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/StatusIndicator/StatusIndicator.tsx b/src/StatusIndicator/StatusIndicator.tsx index 56c5396d0..3d547e885 100644 --- a/src/StatusIndicator/StatusIndicator.tsx +++ b/src/StatusIndicator/StatusIndicator.tsx @@ -62,6 +62,14 @@ const StatusIndicator = styled.span( typography, flexbox, ({ theme, type = StatusIndicatorValues.neutral }) => ({ + margin: theme.space.none, + paddingTop: theme.space.none, + paddingRight: theme.space.x1, + paddingBottom: theme.space.none, + paddingLeft: theme.space.x1, + fontSize: theme.fontSizes.smaller, + lineHeight: theme.lineHeights.smallerText, + alignSelf: "center", display: "inline-block", fontWeight: theme.fontWeights.bold, textTransform: "uppercase",