aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/editorClassNames.ts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-08-16 21:14:50 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-08-16 21:14:50 +0200
commit19cd11118cde7160cd447c81bc965007c0437479 (patch)
tree5fea613e7a46d69380995368a68cc72f186078a4 /subprojects/frontend/src/editor/editorClassNames.ts
parentchore(deps): bump frontend dependencies (diff)
downloadrefinery-19cd11118cde7160cd447c81bc965007c0437479.tar.gz
refinery-19cd11118cde7160cd447c81bc965007c0437479.tar.zst
refinery-19cd11118cde7160cd447c81bc965007c0437479.zip
refactor(frondend): improve editor store and theme
Also bumps frontend dependencies.
Diffstat (limited to 'subprojects/frontend/src/editor/editorClassNames.ts')
-rw-r--r--subprojects/frontend/src/editor/editorClassNames.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/subprojects/frontend/src/editor/editorClassNames.ts b/subprojects/frontend/src/editor/editorClassNames.ts
new file mode 100644
index 00000000..5584e8c2
--- /dev/null
+++ b/subprojects/frontend/src/editor/editorClassNames.ts
@@ -0,0 +1,10 @@
1const PREFIX = 'problem-editor-';
2
3const editorClassNames = {
4 foldPlaceholder: `${PREFIX}fold-placeholder`,
5 foldMarker: `${PREFIX}fold-marker`,
6 foldMarkerClosed: `${PREFIX}fold-marker-closed`,
7 foldMarkerOpen: `${PREFIX}fold-marker-open`,
8};
9
10export default editorClassNames;