From b8922809624a4bd7df49c5e679b093970bbb1c9e Mon Sep 17 00:00:00 2001 From: LichLord91 <8435580+LichLord91@users.noreply.github.com> Date: Sat, 9 Jul 2022 09:32:48 -0700 Subject: [PATCH] fix(theme-classic): fix Layout theme height CSS (#7752) * fix(theme-classic): fix Layout theme css height This fixes html and body tags height from bug report https://github.com/facebook/docusaurus/issues/7746 * Update styles.module.css Co-authored-by: Joshua Chen --- .../src/theme/Layout/styles.module.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/docusaurus-theme-classic/src/theme/Layout/styles.module.css b/packages/docusaurus-theme-classic/src/theme/Layout/styles.module.css index 9f310a54e673..b667fe7911e9 100644 --- a/packages/docusaurus-theme-classic/src/theme/Layout/styles.module.css +++ b/packages/docusaurus-theme-classic/src/theme/Layout/styles.module.css @@ -5,7 +5,8 @@ * LICENSE file in the root directory of this source tree. */ -:global(html, body) { +html, +body { height: 100%; }