From 4f3349c4cde217228352c9953c35c738c0befe37 Mon Sep 17 00:00:00 2001 From: Tony Vi Date: Tue, 30 May 2023 17:31:53 +0300 Subject: [PATCH] fix(GoalListItem): bigger paddings for row --- src/components/GoalListItem/GoalListItem.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/GoalListItem/GoalListItem.tsx b/src/components/GoalListItem/GoalListItem.tsx index 53707e749..ee6e1a718 100644 --- a/src/components/GoalListItem/GoalListItem.tsx +++ b/src/components/GoalListItem/GoalListItem.tsx @@ -55,12 +55,12 @@ const GoalCell = styled.div<{ align?: 'center' | 'left' | 'right' }>` &:last-child { width: 1%; white-space: nowrap; - padding: ${gapXs} ${gapSm} ${gapXs} 0; + padding: ${gapS} ${gapSm} ${gapS} 0; border-radius: 0 ${radiusM} ${radiusM} 0; } &:first-child { - padding: ${gapXs} 0 ${gapXs} ${gapSm}; + padding: ${gapS} 0 ${gapS} ${gapSm}; border-radius: ${radiusM} 0 0 ${radiusM}; } `; @@ -101,7 +101,7 @@ const GoalTitleItem = styled(GoalCell)` const GoalContentItem = styled(GoalCell)` justify-self: center; align-self: center; - padding: ${gapXs} ${gapS}; + padding: ${gapS} ${gapS}; `; const GoalTitleContainer = styled.div`