Fix text-decoration for <del> tag

Browsers usually render a <del> tag with a strike-through. However,
strike-through makes the number of deletions in a file unreadable as
well as the number of additions is rendered with an underline. This
commit fixes the issue by using underline for the <del> tag.
This commit is contained in:
Kunal Sareen 2022-05-30 21:16:02 +10:00 committed by Drew DeVault
parent b54049b3d9
commit 390e609e53
1 changed files with 4 additions and 0 deletions

View File

@ -26,6 +26,10 @@ dt {
overflow-wrap: break-word;
}
del {
text-decoration: underline;
}
.tree-list {
display: grid;
// mode name