fix(notifications): widen overlay notification thumbnail to 100px

This commit is contained in:
2026-06-05 00:03:09 -07:00
parent 5fbbffdcdd
commit c9acfff2bc
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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);
});
+1 -1
View File
@@ -240,7 +240,7 @@ body:focus-visible,
}
.overlay-notification-image {
width: 56px;
width: 100px;
height: 56px;
align-self: center;
display: block;