Skip to content

Commit

Permalink
Remove unnecessary important flag from css
Browse files Browse the repository at this point in the history
  • Loading branch information
mhoustonataegis committed Dec 1, 2021
1 parent af95d83 commit 8c1da02
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const StyledMinSlider = styled(Slider)<{
}
.ant-slider-track {
background-color: ${LIGHT_GRAY} !important;
background-color: ${LIGHT_GRAY};
}
&:hover {
Expand All @@ -59,7 +59,7 @@ const StyledMinSlider = styled(Slider)<{
}
.ant-slider-track {
background-color: ${DARK_GRAY} !important;
background-color: ${DARK_GRAY};
}
}
`}
Expand Down

0 comments on commit 8c1da02

Please sign in to comment.