aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/editorClassNames.ts
diff options
context:
space:
mode:
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;