【发布时间】:2021-01-05 16:04:52
【问题描述】:
我在 index.html 部分尝试了以下内容,但它什么也没做:
<style>
:root {
--sidebar-width : 100rem;
}
</style>
这是 docsify 的普通用法。
【问题讨论】:
我在 index.html 部分尝试了以下内容,但它什么也没做:
<style>
:root {
--sidebar-width : 100rem;
}
</style>
这是 docsify 的普通用法。
【问题讨论】:
删除<style> 部分并将您的代码添加到theme.css
:root {
--sidebar-width : 100rem;
}
【讨论】: