Skip to content

Commit

Permalink
fix: Link not visible in Light Theme
Browse files Browse the repository at this point in the history
  • Loading branch information
morning4coffe-dev committed Jul 19, 2024
1 parent 18bae83 commit aa0d964
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions src/Uno.Playground.Shared/Samples/Playground.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,20 @@
Margin="0,0,0,25"
VerticalAlignment="Center" />

<HyperlinkButton Content="http://platform.uno"
NavigateUri="http://platform.uno"
<HyperlinkButton Content="https://platform.uno"
NavigateUri="https://platform.uno"
Foreground="White"
FontSize="16"
Margin="1,30,0,0"
VerticalAlignment="Center" />
HorizontalContentAlignment="Left"
VerticalAlignment="Center">
<HyperlinkButton.Resources>
<SolidColorBrush x:Key="HyperlinkButtonForegroundPointerOver"
Color="{StaticResource Color08Brush}" />
<SolidColorBrush x:Key="HyperlinkButtonForegroundPressed"
Color="{StaticResource Color08Brush}" />
</HyperlinkButton.Resources>
</HyperlinkButton>
</wasm:Grid>
</StackPanel>

Expand Down Expand Up @@ -456,7 +464,7 @@
Foreground="White" />
</StackPanel>



<VisualStateManager.VisualStateGroups>
<VisualStateGroup>
Expand Down

0 comments on commit aa0d964

Please sign in to comment.