Browse Source

Fix the `Reset` button's styling in File associations.

Update button styling in `FileAssociationsView`: set transparent background and add `mainBtn` class.
Ruben 6 months ago
parent
commit
bb89debfcb
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/PicView.Avalonia/Views/FileAssociationsView.axaml

+ 2 - 1
src/PicView.Avalonia/Views/FileAssociationsView.axaml

@@ -149,7 +149,8 @@
             <DockPanel Margin="0,15,0,0">
 
                 <Button
-                    Classes="altHover"
+                    Background="Transparent"
+                    Classes="altHover mainBtn"
                     Command="{CompiledBinding AssociationsViewModel.ResetCommand}"
                     DockPanel.Dock="Left"
                     HorizontalAlignment="Left"