From 5a15628677582643e8f638b3a61681752ee52dbc Mon Sep 17 00:00:00 2001 From: Sarju Hansaliya Date: Wed, 3 Nov 2021 00:57:34 +0530 Subject: [PATCH] fix style linting issue --- src/components/Steps/styles.tsx | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/src/components/Steps/styles.tsx b/src/components/Steps/styles.tsx index 106afae3d..6e663891a 100644 --- a/src/components/Steps/styles.tsx +++ b/src/components/Steps/styles.tsx @@ -75,15 +75,14 @@ export const StepName = styled('div')` `; export const IconDot = styled.div<{ completed?: boolean; active?: boolean }>` -position: relative; -z-index: 5; -display: flex; -justify-content: center; -align-items: center; -width: 10px; -height: 10px; -border-radius: 50%; -background: ${({ completed, active, theme }) => (completed || active ? theme.primary1 : theme.bg5)}; -margin-top: 17px; -} + position: relative; + z-index: 5; + display: flex; + justify-content: center; + align-items: center; + width: 10px; + height: 10px; + border-radius: 50%; + background: ${({ completed, active, theme }) => (completed || active ? theme.primary1 : theme.bg5)}; + margin-top: 17px; `;