Skip to content

Commit

Permalink
fix: underline color of hrefs
Browse files Browse the repository at this point in the history
We need to explicitly set the underline color to the same
blue as we set the text.

fixes: Sub6Resources#1414

We need to explicitly set the text decoration color.
  • Loading branch information
a1rwulf committed Nov 23, 2024
1 parent 79ec194 commit 21b6987
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/src/builtins/interactive_element_builtin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class InteractiveElementBuiltIn extends HtmlExtension {
style: Style(
color: Colors.blue,
textDecoration: TextDecoration.underline,
textDecorationColor: Colors.blue,
),
node: context.node,
elementId: context.id,
Expand Down

0 comments on commit 21b6987

Please sign in to comment.