diff --git a/src/Avalonia/Artemis.UI.Shared/Services/Builders/NotificationBuilder.cs b/src/Avalonia/Artemis.UI.Shared/Services/Builders/NotificationBuilder.cs
index 6e14d181f..22fa90f18 100644
--- a/src/Avalonia/Artemis.UI.Shared/Services/Builders/NotificationBuilder.cs
+++ b/src/Avalonia/Artemis.UI.Shared/Services/Builders/NotificationBuilder.cs
@@ -209,10 +209,10 @@ public class NotificationButtonBuilder
internal IControl Build()
{
if (_action != null)
- return new Button {Content = _text, Command = ReactiveCommand.Create(() => _action())};
+ return new Button {Content = _text, Command = ReactiveCommand.Create(() => _action()), Classes = new Classes("AppBarButton")};
if (_command != null)
- return new Button {Content = _text, Command = _command, CommandParameter = _commandParameter};
- return new Button {Content = _text};
+ return new Button {Content = _text, Command = _command, CommandParameter = _commandParameter, Classes = new Classes("AppBarButton")};
+ return new Button {Content = _text, Classes = new Classes("AppBarButton")};
}
}
diff --git a/src/Avalonia/Artemis.UI/Screens/ProfileEditor/Panels/ProfileTree/ProfileTreeView.axaml b/src/Avalonia/Artemis.UI/Screens/ProfileEditor/Panels/ProfileTree/ProfileTreeView.axaml
index 95fcc9084..e79601d7e 100644
--- a/src/Avalonia/Artemis.UI/Screens/ProfileEditor/Panels/ProfileTree/ProfileTreeView.axaml
+++ b/src/Avalonia/Artemis.UI/Screens/ProfileEditor/Panels/ProfileTree/ProfileTreeView.axaml
@@ -14,10 +14,10 @@
-
-
-
-
+
+
+
+
@@ -35,12 +35,12 @@
-