From ea3017c05240e8709e6f0c5072635ee3bed51303 Mon Sep 17 00:00:00 2001 From: Mahendrata Harpi Date: Mon, 15 Jun 2020 15:47:05 +0700 Subject: [PATCH] :bug: Fix lambda symbol appear before checkbox --- _sass/klise/_post.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/_sass/klise/_post.scss b/_sass/klise/_post.scss index f6cb328..7465d46 100644 --- a/_sass/klise/_post.scss +++ b/_sass/klise/_post.scss @@ -115,9 +115,13 @@ } ul.task-list { - list-style: none; + list-style: none; margin: 0; + li::before { + content: ""; + } + li input[type="checkbox"] { margin-right: 10px; }