MaLuns / hexo-theme-async

一个简单而轻量级的 Hexo 主题。 | A simple, lightweight Hexo theme.
https://hexo-theme-async.imalun.com
MIT License
327 stars 40 forks source link

关于markdown文章代码块以及长标题的美化建议 #41

Closed Alvin-YS closed 1 year ago

Alvin-YS commented 1 year ago

考虑把主题的侧边栏以及主题的宽度加大一点? 文章代码块一行过长可能显示不全(适当增加点宽度怎么样? markdown文章目录过长也导致目录文字显示不全(加宽一点侧边栏?

MaLuns commented 1 year ago

主题宽度可以自定义样式,进行覆盖,可以调整为你自己喜欢大小,主题是响应式的,如果只需要修改 PC 端 可以像如下覆盖

@media (min-width: 1600px) {
    .container {
        max-width: 1540px;
    }
}

其他尺寸设置 image