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;