如何增加bookdown中侧边栏菜单的宽度

How to increase width of the sidebar menu in bookdown

我想增加 bookdown 中边栏菜单的宽度。
我的章节标题需要更多 space...
Here's a basic example

我试过了:

.book-summary {
  width: 650px;
}

但这肯定更复杂...尤其是要使其与切换按钮一起使用。
也许是 css 把戏?

提前致谢!

作为共同点,我们可以取一个github example of "bookdown: Authoring Books and Technical Documents with R Markdown" and add css below to it style.css (here):

.book.with-summary .book-header.fixed {
    left: 650px;
}

.book.with-summary .book-body {
    left: 650px;
}

.book .book-summary {
    width: 650px;
}

这有帮助吗?