From 12a9a26183a18034b38d417e23865a8e3af6c858 Mon Sep 17 00:00:00 2001 From: shanejonas Date: Tue, 4 Jun 2019 16:10:50 -0700 Subject: [PATCH 1/2] fix: white bg for docs --- src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index e59eda47..afefcd06 100755 --- a/src/App.tsx +++ b/src/App.tsx @@ -243,13 +243,13 @@ export default class App extends React.Component<{}, IState> { private getPlayground = () => { if (!this.state.uiSchema.appBar["ui:splitView"]) { return ( - +
- +
); } else { return this.getSplitPane(); From ad9cf93f03891392cb34bb395315646fb5d11b18 Mon Sep 17 00:00:00 2001 From: shanejonas Date: Tue, 4 Jun 2019 16:14:34 -0700 Subject: [PATCH 2/2] fix: white docs bg for light theme --- src/themes/openrpcTheme.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/themes/openrpcTheme.ts b/src/themes/openrpcTheme.ts index 6699f193..35d36698 100644 --- a/src/themes/openrpcTheme.ts +++ b/src/themes/openrpcTheme.ts @@ -9,7 +9,9 @@ export const lightTheme = createMuiTheme({ }, }, palette: { - + background: { + default: "white", + }, }, });