Ver Fonte

Change layout of chunk buttons to reverse order

Yuki Takei há 11 meses atrás
pai
commit
e2a427980a

+ 9 - 0
packages/editor/src/client/components-internal/CodeMirrorEditor/CodeMirrorEditor.module.scss

@@ -173,3 +173,12 @@
     }
   }
 }
+
+// Change buttons layout for @codemirror/merge
+.codemirror-editor :global {
+  .cm-chunkButtons {
+    // reverse order
+    display: flex;
+    flex-direction: row-reverse;
+  }
+}