+
-
+
{renderRoutes(route.routes, {docsMetadata})}
diff --git a/packages/docusaurus-plugin-content-docs/src/theme/DocPage/styles.css b/packages/docusaurus-plugin-content-docs/src/theme/DocPage/styles.css
new file mode 100644
index 0000000000..f44d83b29e
--- /dev/null
+++ b/packages/docusaurus-plugin-content-docs/src/theme/DocPage/styles.css
@@ -0,0 +1,23 @@
+/**
+ * Copyright (c) 2017-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+ /**
+ * width 19rem is calculated according to (sidebarWidth - sidebarPadding)
+ * i.e 20rem - ( 0.5rem + 0.5rem )
+ * Todo - 0.5rem and 20rem should be a css variable
+ */
+
+ @media (min-width: 996px) {
+ .sidebar__container {
+ width: 19rem;
+ float: left;
+ min-height: calc(100vh - var(--ifm-navbar-height));
+ }
+ .content__container {
+ margin: 0 0 0 19rem;
+ }
+}