Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ const editorAreaBaseStyles = css({
paddingTop: spacing[600],
});

const editorAreaDarkStyles = css({
backgroundColor: palette.gray.dark4,
});
const editorAreaDarkStyles = css({});

const editorAreaLightStyles = css({
backgroundColor: palette.gray.light3,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ const editorContainerStyles = css({
height: '100%',
});

const editorContainerStylesDark = css({
background: palette.gray.dark4,
});
const editorContainerStylesDark = css({});

const editorContainerStylesLight = css({
background: palette.gray.light3,
Expand Down
4 changes: 2 additions & 2 deletions packages/compass-crud/src/components/json-editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ const editorStyles = css({

const editorDarkModeStyles = css({
'& .cm-editor': {
backgroundColor: `${palette.gray.dark4} !important`,
backgroundColor: `${palette.black} !important`,
},
'& .cm-gutters': {
backgroundColor: `${palette.gray.dark4} !important`,
backgroundColor: `${palette.black} !important`,
},
});

Expand Down
Loading