Skip to content

Commit f1356ef

Browse files
committed
reduce padding redundancy
1 parent 84fec82 commit f1356ef

File tree

1 file changed

+1
-2
lines changed
  • components/src/organisms/FixtureOption

1 file changed

+1
-2
lines changed

components/src/organisms/FixtureOption/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,13 @@ export function FixtureOption(props: FixtureOptionProps): JSX.Element {
2929
return (
3030
<ListItem
3131
type="default"
32-
padding={`${SPACING.spacing16} ${SPACING.spacing24}`}
32+
padding={`${SPACING.spacing16} ${SPACING.spacing12}`}
3333
alignItems={ALIGN_CENTER}
3434
justifyContent={JUSTIFY_SPACE_BETWEEN}
3535
>
3636
<StyledText
3737
desktopStyle="bodyDefaultSemiBold"
3838
oddStyle="bodyTextSemiBold"
39-
padding={`${SPACING.spacing8}`}
4039
>
4140
{optionName}
4241
</StyledText>

0 commit comments

Comments
 (0)