enhance(ui): force inline layout of block ref elements

This commit is contained in:
charlie
2022-06-09 15:16:20 +08:00
committed by Tienson Qin
parent c1822f3ed1
commit 81904156f8
2 changed files with 10 additions and 2 deletions

View File

@@ -227,7 +227,7 @@
border-bottom-color: var(--ls-block-ref-link-text-color);
cursor: alias;
padding: 2px 0;
display: inline-block;
display: inherit;
&:hover {
color: var(--ls-link-text-hover-color);
@@ -235,6 +235,14 @@
.block-content {
cursor: inherit;
&-inner {
display: inherit;
> * {
display: inherit;
}
}
}
}