Skip to content

Commit

Permalink
Fix shifting on hover of TodoItem component
Browse files Browse the repository at this point in the history
  • Loading branch information
lettucegoblin committed Nov 22, 2023
1 parent 705360b commit 2a84178
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 2a84178

Please sign in to comment.