force light mode to avoid making the site look broken

This commit is contained in:
burnettk 2023-03-06 22:04:03 -05:00
parent ddf78d495d
commit f075a84dd6
1 changed files with 7 additions and 1 deletions

View File

@ -269,7 +269,13 @@ export default function TaskShow() {
}
return (
<div className="markdown">
<MDEditor.Markdown source={instructions} />
{/*
https://www.npmjs.com/package/@uiw/react-md-editor switches to dark mode by default by respecting @media (prefers-color-scheme: dark)
This makes it look like our site is broken, so until the rest of the site supports dark mode, turn off dark mode for this component.
*/}
<div data-color-mode="light">
<MDEditor.Markdown source={instructions} />
</div>
</div>
);
};