Skip to content

Commit

Permalink
fix: rendering of delete button
Browse files Browse the repository at this point in the history
  • Loading branch information
jackcasstlesjones committed Dec 18, 2024
1 parent 8d24717 commit cc26e77
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/needs/next-actions/components/NextActionsDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,8 @@ export default function NextActionsDisplay() {
<button aria-label="Delete next actions">
<TrashIcon
className={clsx(
"w-16 h-16 fixed bottom-20 right-5 shadow-lg text-white p-4 rounded-full transform transition-all duration-200 ease-in-out",
"w-16 h-16 fixed bottom-20 right-5 shadow-lg bg-gray-600 text-white p-4 rounded-full transform transition-all duration-200 ease-in-out",
{
"bg-gray-600": mode !== "destroy",
"bg-gradient-to-r from-twd-primary-purple to-purple-600":
mode === "destroy",
}
Expand Down

0 comments on commit cc26e77

Please sign in to comment.