Skip to content

Commit a564234

Browse files
committed
fix: V3 post body links match body color
The body link rule was painting links with --color-text-link-accent (mid-blue), but Figma wants links to read as plain text with just an underline. Switching to color: inherit so links follow the body's --color-text-secondary in both light and dark mode.
1 parent 3b71d48 commit a564234

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

static/css/v3/post-detail.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
}
8484

8585
.post-detail__body a {
86-
color: var(--color-text-link-accent);
86+
color: inherit;
8787
text-decoration: underline;
8888
}
8989

0 commit comments

Comments
 (0)