Skip to content

Commit

Permalink
fix(Timeline): fix the last bold line in TimelineStep on desktop (#3747)
Browse files Browse the repository at this point in the history
  • Loading branch information
mainframev committed Feb 16, 2023
1 parent 0fc18c8 commit 520d345
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -46,7 +46,7 @@ const StyledProgressLine = styled.span<{
position: ${!desktop && "absolute"};
top: ${!desktop && "15px"};
border-width: 1px;
border-style: ${!nextStatus && !last ? "dashed" : "solid"};
border-style: ${!status ? "dashed" : "solid"};
${getBorderStyle({ desktop, theme, status, nextStatus, prevStatus, last })};
${left}: ${!desktop && "11px"};
width: ${desktop && "50%"};
Expand Down

0 comments on commit 520d345

Please sign in to comment.