Add custom theme file to react-mosaic

This commit is contained in:
Nilay Majorwar
2022-02-03 18:13:22 +05:30
parent 2db1e77a83
commit 7afd536202
3 changed files with 189 additions and 1 deletions

View File

@ -25,7 +25,7 @@ type Props = {
export const MainLayout = (props: Props) => {
const { isDark } = useDarkMode();
const mosaicClass = "mosaic-blueprint-theme" + (isDark ? " bp3-dark" : "");
const mosaicClass = "mosaic-custom-theme" + (isDark ? " bp3-dark" : "");
const MOSAIC_MAP = {
editor: props.renderEditor,