From 52a9a15e9085664788a219822a58b64956f9c857 Mon Sep 17 00:00:00 2001 From: zhicheng Date: Wed, 14 Dec 2022 17:31:03 +0800 Subject: [PATCH] fix(scheduled): add space between content, time cost and scheduled date when references Signed-off-by: zhicheng --- src/_blocks.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/_blocks.scss b/src/_blocks.scss index d6a2b07..72e6448 100644 --- a/src/_blocks.scss +++ b/src/_blocks.scss @@ -134,3 +134,16 @@ a:hover > .bullet-container .bullet { opacity: 0.6 !important; transform: scale(0.9); } + +// https://github.com/pengx17/logseq-dev-theme/issues/77 +// add space between content, time cost and scheduled date when references +.block-ref a.fade-link::before, .block-ref a.fade-link::after, +.block-ref .timestamp .opacity-80::before, .block-ref .timestamp .opacity-80::after { + content: " "; +} + +.block-ref a.fade-link, +.block-ref .timestamp-label, +.block-ref .timestamp .opacity-80 { + font-size: 75% !important; +}