From 54ee2ee5ecf1d39e118df8059335a8edbe512703 Mon Sep 17 00:00:00 2001 From: CatsJuice Date: Thu, 20 Mar 2025 02:54:27 +0000 Subject: [PATCH] fix(component): correct notification card's border radius (#10802) --- .../component/src/ui/notification/desktop/styles.css.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/packages/frontend/component/src/ui/notification/desktop/styles.css.ts b/packages/frontend/component/src/ui/notification/desktop/styles.css.ts index 027a07197..05c39a69d 100644 --- a/packages/frontend/component/src/ui/notification/desktop/styles.css.ts +++ b/packages/frontend/component/src/ui/notification/desktop/styles.css.ts @@ -8,14 +8,11 @@ export const actionTextColor = createVar(); export const iconColor = createVar(); export const closeIconColor = createVar(); -export const cardWrapper = style({ - borderRadius: 8, - boxShadow: cssVar('shadow1'), - overflow: 'hidden', -}); +export const cardWrapper = style({}); export const card = style({ - borderRadius: 'inherit', + borderRadius: 8, + boxShadow: cssVar('shadow1'), borderWidth: 1, borderStyle: 'solid', backgroundColor: cardColor,