Skip to content

Commit

Permalink
style: fix range highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
wildergd committed May 20, 2020
1 parent 0dd7000 commit 7eb649e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/Calendar/styled/rangeHighlight.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ const StyledRangeHighlight = attachThemeAttrs(styled.div).attrs(props => {
background: linear-gradient(
to left,
${props.gradientStart},
${props.gradientEnd} 60%,
${props.gradientStart} 50%,
${props.gradientEnd} 50%,
${props.gradientEnd}
);
`};
Expand All @@ -61,7 +62,8 @@ const StyledRangeHighlight = attachThemeAttrs(styled.div).attrs(props => {
background: linear-gradient(
to right,
${props.gradientStart},
${props.gradientEnd} 60%,
${props.gradientStart} 50%,
${props.gradientEnd} 50%,
${props.gradientEnd}
);
`};
Expand Down

0 comments on commit 7eb649e

Please sign in to comment.