Skip to content

Commit 98f67cf

Browse files
committed
fix: Added missing !important keyword
1 parent d77d84d commit 98f67cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/ui/html-view/index.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class HtmlView extends HtmlViewBase {
7878
htmlContent += `body {${bodyStyles.join('')}}`;
7979

8080
if (this.linkColor) {
81-
htmlContent += `a, a:link, a:visited { color: ${this.linkColor.hex}; }`;
81+
htmlContent += `a, a:link, a:visited { color: ${this.linkColor.hex} !important; }`;
8282
}
8383

8484
htmlContent += '</style>';

0 commit comments

Comments
 (0)