Skip to content

Commit

Permalink
list items
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhuff committed Mar 15, 2024
1 parent 13c947a commit 4417d7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const MountItem = styled.div<{ isReady: boolean }>`
flex-direction: ${DIRECTION_COLUMN};
align-items: ${ALIGN_FLEX_START};
padding: ${SPACING.spacing16} ${SPACING.spacing24};
border-radius: ${BORDERS.borderRadius12};
border-radius: ${BORDERS.borderRadius8};
background-color: ${({ isReady }) =>
isReady ? COLORS.green35 : COLORS.yellow35};
&:active {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ function FixtureTableItem({
backgroundColor={
isCurrentFixtureCompatible ? COLORS.green35 : COLORS.yellow35
}
borderRadius={BORDERS.borderRadius12}
borderRadius={BORDERS.borderRadius8}
gridGap={SPACING.spacing24}
padding={`${SPACING.spacing16} ${SPACING.spacing24}`}
marginBottom={lastItem ? SPACING.spacing68 : 'none'}
Expand Down

0 comments on commit 4417d7f

Please sign in to comment.