diff --git a/style/_notification.scss b/style/_notification.scss
index 90991ff..9c2f8d0 100644
--- a/style/_notification.scss
+++ b/style/_notification.scss
@@ -12,6 +12,16 @@ window.notifications {
min-width: 20rem;
.header {
+ .close {
+ padding: 10px;
+ background: $inactive-color;
+ border-radius: $rounded;
+
+ &:hover {
+ background: $bg-color;
+ }
+ }
+
.app-icon {
-gtk-icon-size: 2rem;
}
diff --git a/widgets/notifications/notification.tsx b/widgets/notifications/notification.tsx
index a980691..d11d60c 100644
--- a/widgets/notifications/notification.tsx
+++ b/widgets/notifications/notification.tsx
@@ -57,7 +57,11 @@ export const Notification = ({ n }: { n: AstalNotifd.Notification }) => {
label={n.appName || "Unknown"}
/>
-