Skip to content

Commit

Permalink
fix: adds flexibility to wheel styling (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
CjJordan authored Feb 22, 2023
1 parent 49d2323 commit 528c059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/color-wheel/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ const Wheel = React.forwardRef<HTMLDivElement, WheelProps>((props, ref) => {
className={[prefixCls, className || ''].filter(Boolean).join(' ')}
{...other}
style={{
...style,
position: 'relative',
width,
height,
...style,
}}
ref={ref}
onMove={handleChange}
Expand Down

0 comments on commit 528c059

Please sign in to comment.