/*
* @file        editormd_custom.css
* @description 自定义markdown编译后的html样式,如果想覆盖原始的样式请在此文件中修改
* @updateTime  2022-08-21
*/
.editormd-preview-container code span {
  font-size: 14px !important;
}
.markdown-body * {
  box-sizing: unset;
}
.markdown-body a:hover{
  text-decoration: unset !important;
  color: #ca0c16;
}
.editormd-preview-container, .editormd-html-preview {
  width: auto;
  padding: 0 0 20px 0;
}
.editormd-preview-container img{
  display: block;
  margin:0 auto !important;
}

/*TOC目录*/
.editormd-preview-container .markdown-toc .markdown-toc-list > li a {
  line-height: 30px;
}
