From d07a3b7d55376aae8407d2a8d0adba101c0e74f0 Mon Sep 17 00:00:00 2001 From: sudacode Date: Fri, 5 Jun 2026 00:03:09 -0700 Subject: [PATCH] fix(notifications): widen overlay notification thumbnail to 100px --- src/renderer/overlay-notifications.test.ts | 2 +- src/renderer/style.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/overlay-notifications.test.ts b/src/renderer/overlay-notifications.test.ts index be3ffe93..7d499fb3 100644 --- a/src/renderer/overlay-notifications.test.ts +++ b/src/renderer/overlay-notifications.test.ts @@ -207,6 +207,6 @@ test('overlay notification cards use larger display dimensions', () => { overlayNotificationCss, /\.overlay-notification-card\.has-image\s*\{[^}]*min-height:\s*88px;/s, ); - assert.match(overlayNotificationCss, /\.overlay-notification-image\s*\{[^}]*width:\s*56px;/s); + assert.match(overlayNotificationCss, /\.overlay-notification-image\s*\{[^}]*width:\s*100px;/s); assert.match(overlayNotificationCss, /\.overlay-notification-image\s*\{[^}]*height:\s*56px;/s); }); diff --git a/src/renderer/style.css b/src/renderer/style.css index 75a3d060..6f1a4997 100644 --- a/src/renderer/style.css +++ b/src/renderer/style.css @@ -240,7 +240,7 @@ body:focus-visible, } .overlay-notification-image { - width: 56px; + width: 100px; height: 56px; align-self: center; display: block;