Skip to content

Commit

Permalink
fix(GoalListItem): bigger paddings for row
Browse files Browse the repository at this point in the history
  • Loading branch information
awinogradov committed May 30, 2023
1 parent fbc61f4 commit 4f3349c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/GoalListItem/GoalListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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};
}
`;
Expand Down Expand Up @@ -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`
Expand Down

0 comments on commit 4f3349c

Please sign in to comment.