Skip to content

Commit

Permalink
fix(v2): remove empty doc sidebar container (#1870)
Browse files Browse the repository at this point in the history
  • Loading branch information
lex111 authored and yangshun committed Oct 23, 2019
1 parent 68d5adf commit 11f9977
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG-2.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased

- Add sticky footer.
- Remove empty doc sidebar container

## 2.0.0-alpha.30

Expand Down
16 changes: 9 additions & 7 deletions packages/docusaurus-theme-classic/src/theme/DocPage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@ function DocPage(props) {
return (
<Layout noFooter>
<div className={styles.docPage}>
<div className={styles.docSidebarContainer}>
<DocSidebar
docsSidebars={docsSidebars}
location={location}
sidebar={sidebar}
/>
</div>
{sidebar && (
<div className={styles.docSidebarContainer}>
<DocSidebar
docsSidebars={docsSidebars}
location={location}
sidebar={sidebar}
/>
</div>
)}
<main className={styles.docMainContainer}>
<MDXProvider components={MDXComponents}>
{renderRoutes(route.routes)}
Expand Down

0 comments on commit 11f9977

Please sign in to comment.