aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/EditorTheme.ts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-10-04 20:43:59 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-10-04 20:43:59 +0200
commit49088c9a1cfa7c4b979756053df32e2fb4ab40b7 (patch)
tree5019d8f7418b66cb71807a128405908fb83d3688 /subprojects/frontend/src/editor/EditorTheme.ts
parentbuild: check out cjs files correctly on windows (diff)
downloadrefinery-49088c9a1cfa7c4b979756053df32e2fb4ab40b7.tar.gz
refinery-49088c9a1cfa7c4b979756053df32e2fb4ab40b7.tar.zst
refinery-49088c9a1cfa7c4b979756053df32e2fb4ab40b7.zip
fix: test and lint failures
Diffstat (limited to 'subprojects/frontend/src/editor/EditorTheme.ts')
-rw-r--r--subprojects/frontend/src/editor/EditorTheme.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/subprojects/frontend/src/editor/EditorTheme.ts b/subprojects/frontend/src/editor/EditorTheme.ts
index 3ec977da..fa77862c 100644
--- a/subprojects/frontend/src/editor/EditorTheme.ts
+++ b/subprojects/frontend/src/editor/EditorTheme.ts
@@ -16,7 +16,7 @@ export default styled('div', {
16 showLineNumbers: boolean; 16 showLineNumbers: boolean;
17 showActiveLine: boolean; 17 showActiveLine: boolean;
18}>(({ theme, showLineNumbers, showActiveLine }) => { 18}>(({ theme, showLineNumbers, showActiveLine }) => {
19 const editorFontStyle = { 19 const editorFontStyle: CSSObject = {
20 ...theme.typography.editor, 20 ...theme.typography.editor,
21 fontWeight: theme.typography.fontWeightEditorNormal, 21 fontWeight: theme.typography.fontWeightEditorNormal,
22 [theme.breakpoints.down('sm')]: { 22 [theme.breakpoints.down('sm')]: {