feat: implement item selection functionality in exercise 3

This commit is contained in:
2026-05-20 16:13:14 -03:00
parent b97fb32d67
commit e7d0ca8aa2
3 changed files with 36 additions and 2 deletions

View File

@@ -3,3 +3,15 @@ div {
padding: 10px;
margin: 10px;
}
li {
cursor: pointer;
}
.selected {
background-color: #007bff;
color: white;
font-weight: bold;
border-radius: 6px;
padding: 4px 8px;
}