Skip to content

Commit f75c152

Browse files
committed
Timeline - fix circle bg color
1 parent d50efa5 commit f75c152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/timeline/Point.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const Point = (props: PointPropsInternal) => {
3636
const outlineStyle = hasOutline &&
3737
{borderWidth: OUTLINE_WIDTH, borderColor: color && Colors.getColorTint(color, OUTLINE_TINT)};
3838
const circleStyle = !hasContent && isCircle &&
39-
{backgroundColor: Colors.$backgroundDefault, borderWidth: CIRCLE_WIDTH, borderColor: color};
39+
{backgroundColor: 'transparent', borderWidth: CIRCLE_WIDTH, borderColor: color};
4040

4141
return [styles.point, pointSizeStyle, pointColorStyle, outlineStyle, circleStyle];
4242
}, [type, color, label, icon]);

0 commit comments

Comments
 (0)