Skip to content

Commit

Permalink
fix: remove backdrop-blur class from warning buttons (#3037)
Browse files Browse the repository at this point in the history
  • Loading branch information
sct committed Sep 20, 2022
1 parent 7404d68 commit 430b1ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Common/Button/index.tsx
Expand Up @@ -61,7 +61,7 @@ function Button<P extends ElementTypes = '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':
Expand Down

0 comments on commit 430b1ab

Please sign in to comment.