PyItemTemplate.strike() uses the CSS class line-through, which was part of Tailwind. Reintroduce it in our custom CSS. This fixes the todo-pylist example (#638)

This commit is contained in:
Antonio Cuni
2022-08-03 12:29:39 +02:00
committed by GitHub
parent 2a59ff8e68
commit 5b927a70c2

View File

@@ -238,3 +238,7 @@ button, input, optgroup, select, textarea {
line-height: 1.15;
margin: 0;
}
.line-through {
text-decoration: line-through;
}