Skip to content

Commit

Permalink
fix(Timeline): Correct row column background mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
m7kvqbe1 committed Nov 13, 2020
1 parent f6e6b18 commit 63db7c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const StyledTimelineRowWeek = styled.div<StyledTimelineRowWeekProps>`
display: inline-block;
height: 100vh;
background-color: ${({ isOddNumber }) =>
isOddNumber ? TIMELINE_BG_COLOR : TIMELINE_ALT_BG_COLOR};
isOddNumber ? TIMELINE_ALT_BG_COLOR : TIMELINE_BG_COLOR};
margin-left: ${({ marginLeft }) => marginLeft};
width: ${({ width }) => width};
`
Expand Down

0 comments on commit 63db7c1

Please sign in to comment.