Skip to content

Commit 21b6987

Browse files
committed
fix: underline color of hrefs
We need to explicitly set the underline color to the same blue as we set the text. fixes: #1414 We need to explicitly set the text decoration color.
1 parent 79ec194 commit 21b6987

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/src/builtins/interactive_element_builtin.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ class InteractiveElementBuiltIn extends HtmlExtension {
3030
style: Style(
3131
color: Colors.blue,
3232
textDecoration: TextDecoration.underline,
33+
textDecorationColor: Colors.blue,
3334
),
3435
node: context.node,
3536
elementId: context.id,

0 commit comments

Comments
 (0)