Skip to content

Commit

Permalink
修复了列表内插入多行代码块时无法正常显示高亮样式的问题
Browse files Browse the repository at this point in the history
1. assets/css/light-color.scss 修复了浅色模式下列表内插入多行代码块时无法正常显示高亮样式的问题
2. assets/css/dark-color.scss 修复了深色模式下列表内插入多行代码块时无法正常显示高亮样式的问题
  • Loading branch information
changbin1997 committed Jun 14, 2023
1 parent 959ce98 commit 3a69876
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
3 changes: 1 addition & 2 deletions assets/css/dark-color.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ $dark-text-color2: #999999;
ol, ul {
li {
color: $dark-text-color;

code {
> code {
@include codeColor;
}
}
Expand Down
2 changes: 1 addition & 1 deletion assets/css/light-color.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
}
ol, ul {
li {
code {
> code {
@include codeColor;
}
}
Expand Down
16 changes: 8 additions & 8 deletions assets/css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

1 comment on commit 3a69876

@shuaiplus
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

感谢修复,原早日打包

Please sign in to comment.