diff --git a/src/components/Button/Button.tsx b/src/components/Button/Button.tsx index 52ad48818..c94feafd1 100644 --- a/src/components/Button/Button.tsx +++ b/src/components/Button/Button.tsx @@ -33,29 +33,29 @@ const sizeMap: Record< } > = { lg: { - fontSize: "1.125rem", - lineHeight: "1.625rem", - height: "4rem", - padding: "0rem 2.5rem", - gap: "0.25rem", + fontSize: "18px", + lineHeight: "26px", + height: "64px", + padding: "0px 40px", + gap: "4px", borderRadius: "32px", mobileSize: "md", }, md: { - fontSize: "1rem", - lineHeight: "1.25rem", - height: "2.5rem", - padding: "0rem 1.25rem", - gap: "0.375rem", + fontSize: "16px", + lineHeight: "20px", + height: "40px", + padding: "0px 20px", + gap: "6px", borderRadius: "20px", mobileSize: "sm", }, sm: { - fontSize: "0.875rem", - lineHeight: "1.125rem", - height: "2.5rem", - padding: "0rem 1rem 0.0625rem 1rem", - gap: "0.25rem", + fontSize: "14px", + lineHeight: "18px", + height: "40px", + padding: "0px 16px 1px 16px", + gap: "4px", borderRadius: "20px", mobileSize: "sm", },