hexo-theme-fluid icon indicating copy to clipboard operation
hexo-theme-fluid copied to clipboard

修复 Tag 中的代码块下方行间距异常

Open Potat0000 opened this issue 2 years ago • 0 comments

Bug 描述

在 Tag 中的代码块,下方行间距异常。

复现步骤

{% note success %}

```
Something
```

{% endnote %}

截图

修复前

这是我的 Blog 的一个例子

image

修复后

image

Potat0000 avatar Jul 28 '22 02:07 Potat0000

.markdown-body
  .highlight pre, pre
    padding 1.45rem 1rem
+   margin-bottom 16px

  pre code.hljs
    padding 0

  pre[class*="language-"]
    padding-top 1.45rem
    padding-bottom 1.45rem
    padding-right 1rem
    line-height 1.5
+   margin-bottom 16px

这样修改更好

zkqiang avatar Aug 29 '22 05:08 zkqiang

这样修改更好

确实,这样更正确,已修改

Potat0000 avatar Aug 29 '22 05:08 Potat0000