From d0033b9dd53e8accdfde82aa6b8735dd717c27fb Mon Sep 17 00:00:00 2001 From: saksham Date: Sun, 8 Jan 2023 14:23:02 +0530 Subject: [PATCH] fixed issue where button size of default and ghost were different from light and hallow --- lib/src/components/Button/button.styles.css.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/src/components/Button/button.styles.css.ts b/lib/src/components/Button/button.styles.css.ts index 2c41b23..7e55e8a 100644 --- a/lib/src/components/Button/button.styles.css.ts +++ b/lib/src/components/Button/button.styles.css.ts @@ -11,7 +11,8 @@ export const buttonStyles = recipe({ variant: { default: { background: "#1AB5EB", - border: 0, + border: "1px solid transparent", + }, light: { background: "#F9F9F9", @@ -20,7 +21,7 @@ export const buttonStyles = recipe({ }, ghost: { background: "none", - border: 0, + border: "1px solid transparent", color: "#1AB5EB", }, hallow: {