From 4bcc60369a7afe33bdca6a736f6a8f4dd335817d Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Mon, 23 Nov 2020 22:27:46 -0800 Subject: [PATCH] Fix dark mode pre tags. Closes https://github.com/owncast/owncast/issues/394 --- web/styles/globals.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/styles/globals.scss b/web/styles/globals.scss index d9e50ce65..a20a8d0f8 100644 --- a/web/styles/globals.scss +++ b/web/styles/globals.scss @@ -41,4 +41,8 @@ pre { @media (prefers-color-scheme: dark) { @import "~antd/dist/antd.dark"; + pre { + background-color: rgb(44, 44, 44); + color:lightgrey; + } } \ No newline at end of file