File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export const Widget = (props: WidgetProps) => {
3838 // run when the props are changed
3939 useEffect ( ( ) => {
4040 // If border radius passed is greater than 1.2, set it to 1.2. Default value is 1
41- const _borderRadius = customize ?. borderRadius
41+ const _borderRadius = customize ?. borderRadius !== undefined
4242 ? customize ?. borderRadius > 1.2
4343 ? 1.2
4444 : customize ?. borderRadius
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ function Option({
2929 return (
3030 < div
3131 className = { `flex w-28 gap-1 items-center cursor-pointer ${
32- selected ? "" : "p-1.5 hover:bg-widget-primary"
32+ selected ? "" : "p-1.5 hover:bg-widget-secondary hover:bg-opacity-80"
3333 } `}
3434 onClick = { onClick }
3535 >
You can’t perform that action at this time.
0 commit comments