mirror of
https://github.com/playerofgames/obsidian-mia-theme.git
synced 2026-07-22 04:50:24 +00:00
Fix blockquote visual issue
Prior css was too broad and had spacing side-effects with embedded styles.
This commit is contained in:
parent
f2c91b9c03
commit
cb8385e540
1 changed files with 6 additions and 2 deletions
|
|
@ -275,9 +275,13 @@ div.mod-header
|
|||
margin-left: 0ch;
|
||||
border-left-style: var(--mia-blockquote-reading-style, solid);
|
||||
}
|
||||
.markdown-source-view.is-live-preview .cm-quote {
|
||||
margin-left: calc(var(--list-indent) - 1.9rem);
|
||||
div.markdown-source-view.cm-s-obsidian.mod-cm6.is-live-preview div.HyperMD-quote.HyperMD-quote-1.cm-line {
|
||||
margin-left: calc(var(--list-indent) - 1.35rem) !important;
|
||||
}
|
||||
div.markdown-source-view.cm-s-obsidian.mod-cm6.is-live-preview div.HyperMD-quote.HyperMD-quote-1.cm-line::before {
|
||||
margin-left: calc(-1.1rem);
|
||||
}
|
||||
|
||||
|
||||
/** preformatted: shade entire line, and hide indentation width */
|
||||
.cm-line:has(> .cm-hmd-indented-code.cm-inline-code) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue