53 lines
817 B
Plaintext
53 lines
817 B
Plaintext
// MdPreview 统一样式覆盖 - 扁平化风格
|
|
|
|
.flat-md-preview {
|
|
.md-editor {
|
|
background: transparent;
|
|
}
|
|
.md-editor-preview-wrapper {
|
|
padding: 0;
|
|
}
|
|
|
|
.md-editor-preview {
|
|
font-size: 14px;
|
|
line-height: 1.75;
|
|
color: var(--gray-1000);
|
|
|
|
h1 {
|
|
font-size: 1.2rem;
|
|
margin: 16px 0 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.15rem;
|
|
margin: 16px 0 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.1rem;
|
|
margin: 14px 0 10px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 1rem;
|
|
margin: 14px 0 10px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
h5 {
|
|
font-size: 1rem;
|
|
margin: 12px 0 8px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
h6 {
|
|
font-size: 1rem;
|
|
margin: 12px 0 8px;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
}
|