From f045afe82371d6cd88b95ed713d2515bd494ca26 Mon Sep 17 00:00:00 2001 From: ferreroltd <73488793+ferreroltd@users.noreply.github.com> Date: Wed, 29 May 2024 10:41:02 +0100 Subject: [PATCH] chore: border radius (#2202) --- .changeset/clever-tables-yawn.md | 5 +++++ .../react-ui/src/components/Notification/Notification.css.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/clever-tables-yawn.md diff --git a/.changeset/clever-tables-yawn.md b/.changeset/clever-tables-yawn.md new file mode 100644 index 0000000000..6fd0ae7700 --- /dev/null +++ b/.changeset/clever-tables-yawn.md @@ -0,0 +1,5 @@ +--- +"@kadena/react-ui": patch +--- + +Update border and radius based on layout diff --git a/packages/libs/react-ui/src/components/Notification/Notification.css.ts b/packages/libs/react-ui/src/components/Notification/Notification.css.ts index 5b46ad7b10..76a8302621 100644 --- a/packages/libs/react-ui/src/components/Notification/Notification.css.ts +++ b/packages/libs/react-ui/src/components/Notification/Notification.css.ts @@ -89,10 +89,10 @@ export const closeButtonClass = style([ export const borderClass = style([ atoms({ - borderRadius: 'sm', borderStyle: 'solid', }), { + borderWidth: '0', borderLeftWidth: token('border.width.thick'), }, ]);