commit bf697a55be0e43b4e9e309f613f1a7b13494b6bb
parent 623b062a669f5342a720c4c3d2a2dcce68f5cbb3
Author: alex wennerberg <alex@alexwennerberg.com>
Date: Sun, 2 Jan 2022 13:12:40 -0800
add light designation
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/utils.rs b/src/utils.rs
@@ -26,7 +26,7 @@ pub fn email_body(body: &str) -> String {
if line.starts_with(">") || (line.starts_with("On ") && line.ends_with("wrote:")) {
if !in_reply {
in_reply = true;
- bytes.extend_from_slice(b"<span class='reply-text'>");
+ bytes.extend_from_slice(b"<span class='light'>");
}
} else if in_reply {
bytes.extend_from_slice(b"</span>");