From 390e609e533048007e73b8cd587d1923989e7373 Mon Sep 17 00:00:00 2001 From: Kunal Sareen Date: Mon, 30 May 2022 21:16:02 +1000 Subject: [PATCH] Fix text-decoration for tag Browsers usually render a 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 tag. --- scss/main.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scss/main.scss b/scss/main.scss index b41d4ff..86824c5 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -26,6 +26,10 @@ dt { overflow-wrap: break-word; } +del { + text-decoration: underline; +} + .tree-list { display: grid; // mode name