Skip to content

Commit f972c09

Browse files
committed
fix: tour link colour in light mode (#676)
1 parent 852b048 commit f972c09

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

refact-agent/gui/src/components/Tour/TourEnd.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ export const TourEnd = () => {
3636
<Text>
3737
-{" "}
3838
<Link
39-
style={{ color: "black", textDecoration: "underline" }}
39+
style={{
40+
color: appearance === "light" ? "white" : "black",
41+
textDecoration: "underline",
42+
}}
4043
onClick={() => openUrl("https://docs.refact.ai")}
4144
>
4245
Check out our documentation

0 commit comments

Comments
 (0)