diff --git a/CHANGELOG-2.x.md b/CHANGELOG-2.x.md index 33ebc19a11..ba96d976c2 100644 --- a/CHANGELOG-2.x.md +++ b/CHANGELOG-2.x.md @@ -1,6 +1,11 @@ # Docusaurus 2 Changelog +## Unreleased + +- Add sticky footer. + ## 2.0.0-alpha.30 + - Fix babel transpilation include/exclude logic to be more efficient. This also fix a very weird bug `TypeError: Cannot assign to read only property 'exports' of object '#'` if your website path contains `docusaurus` word in it. ## 2.0.0-alpha.29 @@ -11,6 +16,7 @@ - New UI for webpack compilation progress bar. ## 2.0.0-alpha.28 + - Further reduce memory usage to avoid heap memory allocation failure. - Fix `keywords` frontmatter for SEO not working properly. - Fix `swizzle` command not passing context properly to theme packages. diff --git a/packages/docusaurus-theme-classic/src/theme/Layout/index.js b/packages/docusaurus-theme-classic/src/theme/Layout/index.js index bcba87a5e8..5c8e6abc30 100644 --- a/packages/docusaurus-theme-classic/src/theme/Layout/index.js +++ b/packages/docusaurus-theme-classic/src/theme/Layout/index.js @@ -61,7 +61,7 @@ function Layout(props) { - {children} +
{children}
{!noFooter &&