From 532f0cb6344c8918830316ea9cecde892d070b7c Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Fri, 25 Feb 2022 16:39:25 +0100 Subject: [PATCH] fix: explicitly set background for the light theme the default is for it to be transparent, which causes issues when you're overlaying components with the default background color. --- website/src/css/custom.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/src/css/custom.css b/website/src/css/custom.css index afb5decc62..e0fcf975db 100644 --- a/website/src/css/custom.css +++ b/website/src/css/custom.css @@ -34,6 +34,8 @@ html[data-theme='light'] { --unleash-color-admonition-background: var(--unleash-color-gray); --unleash-color-admonition-border: #999; --unleash-color-admonition-text: #2b2b2b; + + --ifm-background-color: #fff; } html[data-theme='dark'] {