Hexo Theme Aurora 主题图片居中显示的解决方案

Hexo Theme Aurora 主题图片居中显示的解决方案

  1. 高能分享
  2. 2021.03.29
  3. 1 min read

简介

记录一下如何将 hexo-theme-aurora 主题的博客图片居中显示

修改文件: node_modules/hexo-theme-aurora/source/static/css/a14e1a22.css:

.post-html img {
  margin: auto;
  cursor: zoom-in;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
Hexo 学习笔记