Skip to content

Commit

Permalink
Merge pull request #109 from fac30/style/trash
Browse files Browse the repository at this point in the history
fix: rendering of delete button
  • Loading branch information
maxitect authored Dec 19, 2024
2 parents 8d24717 + cc26e77 commit 956b5c3
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 956b5c3

Please sign in to comment.