From 430b1ab871f8e3eefbebb37c74aa1ce3f0862efe Mon Sep 17 00:00:00 2001 From: Ryan Cohen Date: Tue, 20 Sep 2022 18:18:25 +0900 Subject: [PATCH] fix: remove backdrop-blur class from warning buttons (#3037) --- src/components/Common/Button/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Common/Button/index.tsx b/src/components/Common/Button/index.tsx index d3f96ae9..7dc4e637 100644 --- a/src/components/Common/Button/index.tsx +++ b/src/components/Common/Button/index.tsx @@ -61,7 +61,7 @@ function Button

( break; case 'warning': buttonStyle.push( - 'text-white border border-yellow-500 backdrop-blur bg-yellow-500 bg-opacity-80 hover:bg-opacity-100 hover:border-yellow-400 focus:border-yellow-700 focus:ring-yellow active:bg-opacity-100 active:border-yellow-700' + 'text-white border border-yellow-500 bg-yellow-500 bg-opacity-80 hover:bg-opacity-100 hover:border-yellow-400 focus:border-yellow-700 focus:ring-yellow active:bg-opacity-100 active:border-yellow-700' ); break; case 'success':