提交 f0652e6a 编写于 作者: G guoweijia

fix

上级 0bdc0bcc
...@@ -15,12 +15,23 @@ ...@@ -15,12 +15,23 @@
} }
.md_link_title { .md_link_title {
font-size: 16px; font-size: 16px;
line-height: 26px;
font-weight: 500; font-weight: 500;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
} }
.md_link_desc { .md_link_desc {
font-size: 14px; font-size: 14px;
line-height: 20px;
color: var(--md-editor-text-color); color: var(--md-editor-text-color);
margin: 6px 0; margin: 6px 0;
line-height: 20px;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
} }
.md_link_url { .md_link_url {
font-size: 12px; font-size: 12px;
......
...@@ -136,7 +136,7 @@ export default { ...@@ -136,7 +136,7 @@ export default {
background: linear-gradient( background: linear-gradient(
to bottom, to bottom,
var(--md-editor-content-bg-color), var(--md-editor-content-bg-color),
transparent rgba(255, 255, 255, 0)
); );
} }
.after { .after {
...@@ -149,7 +149,7 @@ export default { ...@@ -149,7 +149,7 @@ export default {
background: linear-gradient( background: linear-gradient(
to top, to top,
var(--md-editor-content-bg-color), var(--md-editor-content-bg-color),
transparent rgba(255, 255, 255, 0)
); );
} }
.doc_container { .doc_container {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册