fix blockquote spacing
This commit is contained in:
parent
2080cb896d
commit
76b5b7743e
|
@ -59,7 +59,7 @@
|
|||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.text blockquote>* {
|
||||
.text blockquote:last-child {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@ const theme = {
|
|||
image: styles.image,
|
||||
link: styles.link,
|
||||
code: styles.code,
|
||||
hr: styles.hr,
|
||||
list: {
|
||||
nested: {
|
||||
listitem: styles.nestedListItem
|
||||
|
|
|
@ -112,7 +112,7 @@ function Markdown () {
|
|||
|
||||
return (
|
||||
<>
|
||||
<div className='text-left w-100'>
|
||||
<div className='lexical text-left w-100'>
|
||||
<OnChangePlugin onChange={() => editor.update(() => {
|
||||
setMarkdown($convertToMarkdownString(SN_TRANSFORMERS))
|
||||
})}
|
||||
|
|
|
@ -61,6 +61,10 @@ $tooltip-bg: #5c8001;
|
|||
}
|
||||
}
|
||||
|
||||
.lexical blockquote>* {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.modal-close {
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
|
|
Loading…
Reference in New Issue