Skip to content

Commit

Permalink
Merge pull request #1 from lettucegoblin/fix-shifting
Browse files Browse the repository at this point in the history
Fix shifting on hover of TodoItem component
  • Loading branch information
avidrucker authored Nov 22, 2023
2 parents 705360b + 2a84178 commit 3b39430
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TodoItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function TodoItem({ task, isBenchmark, cancelFunc, cloneFunc, theme }) {
statusToSymbol(task.status) :
statusToSymbol(task.was)}</span>
<span className={`${task.status === "cancelled" && "strike"}`}>{task.text}</span>
<div className="relative ml1 h-15">
<div className="relative ml1 h-15 w3">
{cancelFunc && cloneFunc &&
<>
{task.status === "new" || task.status === "ready" ?
Expand Down

0 comments on commit 3b39430

Please sign in to comment.