Skip to content

Commit

Permalink
Fix CirclePicker white pixel bug (#710)
Browse files Browse the repository at this point in the history
  • Loading branch information
casesandberg authored May 4, 2020
1 parent d97d4d7 commit deb6ea0
Show file tree
Hide file tree
Showing 2 changed files with 101 additions and 101 deletions.
2 changes: 1 addition & 1 deletion src/components/circle/CircleSwatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const CircleSwatch = ({ color, onClick, onSwatchHover, hover, active,
Swatch: {
borderRadius: '50%',
background: 'transparent',
boxShadow: `inset 0 0 0 ${ circleSize / 2 }px ${ color }`,
boxShadow: `inset 0 0 0 ${ (circleSize / 2) + 1 }px ${ color }`,
transition: '100ms box-shadow ease',
},
},
Expand Down
Loading

0 comments on commit deb6ea0

Please sign in to comment.