fix(web): blockquotes are different than tl ones

This commit is contained in:
əlemi 2024-05-11 22:06:02 +02:00
parent b062608134
commit ef97000c23
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -68,17 +68,19 @@
margin: 0em 1em; margin: 0em 1em;
} }
blockquote { blockquote {
color: var(--text); margin-top: .5em;
margin-left: .5em; margin-bottom: .5em;
padding-left: .5em;
margin-top: 0;
margin-bottom: 0;
overflow-wrap: break-word;
hyphens: auto;
}
blockquote.tl {
margin-left: 1.25em; margin-left: 1.25em;
padding-left: .3em; 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 { blockquote.tl p {
margin: 0 .5em; margin: 0 .5em;