Skip to content

Commit

Permalink
Fixed iconset
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexMi-Ha committed Jun 27, 2024
1 parent bca3a34 commit 3e52264
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PWManager.Avalonia/Controls/AccountsControl.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,20 @@
<Border Background="{DynamicResource SystemBaseLowColor}" Padding="10 0">
<StackPanel Orientation="Vertical" Spacing="5">
<DockPanel>
<Button Command="{Binding CloseSidePanel}" DockPanel.Dock="Left" Content="&#xf013e;" Classes="iconfont" FontSize="25"/>
<Button Command="{Binding CloseSidePanel}" DockPanel.Dock="Left" Content="&#xf101;" Classes="iconfont" FontSize="25"/>
</DockPanel>
<StackPanel Orientation="Vertical" Margin="10 0">
<TextBlock Text="{Binding CurrentlyOpenedAccount.AccountName}" Foreground="{DynamicResource SystemControlBackgroundAccentBrush}" FontSize="16"/>

<TextBlock Text="Loginname" Opacity="0.6" FontSize="12" Margin="0 10 0 2" />
<StackPanel Orientation="Horizontal" Spacing="10">
<TextBlock MaxWidth="150" HorizontalAlignment="Left" VerticalAlignment="Center" Text="{Binding CurrentlyOpenedAccount.LoginName}" TextTrimming="CharacterEllipsis"/>
<Button Command="{Binding CopyActiveLoginName}" Classes="iconfont" Content="&#xf018f;" FontSize="16" VerticalAlignment="Center"/>
<Button Command="{Binding CopyActiveLoginName}" Classes="iconfont" Content="&#xf0c5;" FontSize="16" VerticalAlignment="Center"/>
</StackPanel>
<TextBlock Text="Password" Opacity="0.6" FontSize="12" Margin="0 10 0 2" />
<StackPanel Orientation="Horizontal" Spacing="10">
<TextBlock MaxWidth="150" HorizontalAlignment="Left" VerticalAlignment="Center" Text="{Binding CurrentlyOpenedAccount.HiddenPassword}"/>
<Button Command="{Binding CopyActivePassword}" Classes="iconfont" Content="&#xf018f;" FontSize="16" VerticalAlignment="Center"/>
<Button Command="{Binding CopyActivePassword}" Classes="iconfont" Content="&#xf0c5;" FontSize="16" VerticalAlignment="Center"/>
</StackPanel>
</StackPanel>
</StackPanel>
Expand Down

0 comments on commit 3e52264

Please sign in to comment.