Skip to content

Commit 59006e0

Browse files
cjyuanillicitonion
andauthored
Use span instead of i for icon
Co-authored-by: Daniel Wagner-Hall <dawagner@gmail.com>
1 parent 53c0adf commit 59006e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sprint-3/todo-list/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ <h1>My ToDo List</h1>
2929
<li class="todo-item"> <!-- include class "completed" if the task completed state is true -->
3030
<span class="description">Task description</span>
3131
<div class="actions">
32-
<button class="complete-btn"><i class="fa-solid fa-check" aria-hidden="true"></i></button>
33-
<button class="delete-btn"><i class="fa-solid fa-trash" aria-hidden="true"></i></button>
32+
<button class="complete-btn"><span class="fa-solid fa-check" aria-hidden="true"></span></button>
33+
<button class="delete-btn"><span class="fa-solid fa-trash" aria-hidden="true"></span></button>
3434
</div>
3535
</li>
3636
</template>

0 commit comments

Comments
 (0)