From d2b046bf6da0d381c72cbd6f5d2206062d2c3f3a Mon Sep 17 00:00:00 2001 From: TkymHrt <23.h.takayama.nutfes@gmail.com> Date: Sun, 24 Nov 2024 20:30:25 +0900 Subject: [PATCH 01/11] =?UTF-8?q?[fix]=20OutlinePrimaryButton=E3=81=AE?= =?UTF-8?q?=E5=BE=AE=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/OutlinePrimaryButton/OutlinePrimaryButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/next-project/src/components/common/OutlinePrimaryButton/OutlinePrimaryButton.tsx b/view/next-project/src/components/common/OutlinePrimaryButton/OutlinePrimaryButton.tsx index d689032b1..c52294bb7 100644 --- a/view/next-project/src/components/common/OutlinePrimaryButton/OutlinePrimaryButton.tsx +++ b/view/next-project/src/components/common/OutlinePrimaryButton/OutlinePrimaryButton.tsx @@ -9,7 +9,7 @@ interface Props { function PrimaryButton(props: Props): JSX.Element { const className = - 'px-4 py-2 text-primary-1 font-bold text-md rounded-lg bg-white-0 border border-primary-1 hover:bg-white-100 hover:text-primary-2 hover:border-primary-2' + + 'flex justify-center px-4 py-2 text-primary-1 font-bold text-md rounded-lg bg-white-0 border border-primary-1 hover:bg-white-100 hover:text-primary-2 hover:border-primary-2' + (props.className ? ` ${props.className}` : ''); return (