From ef97000c23af4931da403794ca588ce24aaf49a2 Mon Sep 17 00:00:00 2001 From: alemi Date: Sat, 11 May 2024 22:06:02 +0200 Subject: [PATCH] fix(web): blockquotes are different than tl ones --- web/index.html | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/web/index.html b/web/index.html index 90bceec7..a22e11e4 100644 --- a/web/index.html +++ b/web/index.html @@ -68,17 +68,19 @@ margin: 0em 1em; } blockquote { - color: var(--text); - margin-left: .5em; - padding-left: .5em; - margin-top: 0; - margin-bottom: 0; - overflow-wrap: break-word; - hyphens: auto; - } - blockquote.tl { + margin-top: .5em; + margin-bottom: .5em; margin-left: 1.25em; padding-left: .3em; + overflow-wrap: break-word; + hyphens: auto; + border-left: solid 3px var(--background-secondary); + } + blockquote.tl { + color: var(--text); + border-left: solid 3px var(--accent); + margin-top: 0; + margin-bottom: 0; } blockquote.tl p { margin: 0 .5em;