Skip to content

Commit b39fdd4

Browse files
committed
Default Border For 'Light' Type
1 parent 609cd20 commit b39fdd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/decorators/styler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export function getPopupColors(customColors, type, hasBorder) {
108108
if (borderColor) {
109109
colors.border = borderColor;
110110
} else {
111-
colors.border = "black";
111+
colors.border = (type === "light" ? "black" : "white");
112112
}
113113
}
114114

0 commit comments

Comments
 (0)