Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tweak fontsizes #1240

Merged
merged 4 commits into from
May 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions WinUIGallery/ControlPages/ListViewPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ sent or received, and those values are bound in the DataTemplate.-->
<StackPanel Orientation="Horizontal">
<TextBlock Text="{x:Bind Views}" Style="{ThemeResource CaptionTextBlockStyle}" Margin="0"/>
<TextBlock Text=" Views " Style="{ThemeResource CaptionTextBlockStyle}"/>
<TextBlock Text=" &#x22C5; " FontFamily="Segoe UI" FontSize="12" FontWeight="Bold"/>
<TextBlock Text=" &#x22C5; " Style="{ThemeResource CaptionTextBlockStyle}"/>
<TextBlock Text="{x:Bind Likes}" Style="{ThemeResource CaptionTextBlockStyle}" Margin="5,0,0,0"/>
<TextBlock Text=" Likes" Style="{ThemeResource CaptionTextBlockStyle}"/>
</StackPanel>
Expand Down Expand Up @@ -429,7 +429,7 @@ sent or received, and those values are bound in the DataTemplate.--&gt;
&lt;StackPanel Orientation="Horizontal"&gt;
&lt;TextBlock Text="{x:Bind Views}" HorizontalAlignment="Left" Style="{ThemeResource CaptionTextBlockStyle}" Margin="0,0,0,0"/&gt;
&lt;TextBlock Text=" Views " HorizontalAlignment="Left" Style="{ThemeResource CaptionTextBlockStyle}"/&gt;
&lt;TextBlock Text=" &#x22C5; " FontFamily="Segoe UI" FontSize="12" FontWeight="Bold"
&lt;TextBlock Text=" &#x22C5; " Style="{ThemeResource CaptionTextBlockStyle}"
HorizontalAlignment="Left"/&gt;
&lt;TextBlock Text="{x:Bind Likes}" HorizontalAlignment="Left" Style="{ThemeResource CaptionTextBlockStyle}" Margin="5,0,0,0"/&gt;
&lt;TextBlock Text=" Likes" HorizontalAlignment="Left" Style="{ThemeResource CaptionTextBlockStyle}"/&gt;
Expand Down
8 changes: 4 additions & 4 deletions WinUIGallery/Controls/PageHeader.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
Visibility="{x:Bind Item.Docs, Converter={StaticResource collectionConverter}}">
<DropDownButton.Content>
<StackPanel Orientation="Horizontal" Spacing="8">
<FontIcon FontSize="14" Glyph="&#xE8A5;" />
Jay-o-Way marked this conversation as resolved.
Show resolved Hide resolved
<FontIcon FontSize="16" Glyph="&#xE8A5;" />
<TextBlock Text="Documentation" />
Jay-o-Way marked this conversation as resolved.
Show resolved Hide resolved
</StackPanel>
</DropDownButton.Content>
Expand Down Expand Up @@ -116,7 +116,7 @@
ToolTipService.ToolTip="Toggle theme"
Visibility="{x:Bind ThemeButtonVisibility, Mode=OneWay}">
<Button.Content>
<FontIcon FontSize="14" Glyph="&#xE793;" />
<FontIcon FontSize="16" Glyph="&#xE793;" />
</Button.Content>
</Button>
<AppBarSeparator Visibility="{x:Bind ThemeButtonVisibility, Mode=OneWay}" />
Expand All @@ -129,7 +129,7 @@
<Button.Content>
<FontIcon
x:Name="CopyLinkButtonIcon"
Jay-o-Way marked this conversation as resolved.
Show resolved Hide resolved
FontSize="14"
FontSize="16"
Glyph="&#xE71B;" />
</Button.Content>
<Button.Resources>
Expand All @@ -155,7 +155,7 @@
Click="OnFeedBackButtonClick"
ToolTipService.ToolTip="Send feedback">
<Button.Content>
<FontIcon FontSize="14" Glyph="&#xED15;" />
<FontIcon FontSize="16" Glyph="&#xED15;" />
</Button.Content>
</Button>
</StackPanel>
Expand Down