From aa7c8270e672377f889bf2c67f35c5ccb9bc6e72 Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Tue, 18 Nov 2025 14:44:52 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Remove=20code=20editor=20outline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/builder/src/components/inputs/CodeEditor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/builder/src/components/inputs/CodeEditor.tsx b/apps/builder/src/components/inputs/CodeEditor.tsx index cae8aa623..09d61f2f0 100644 --- a/apps/builder/src/components/inputs/CodeEditor.tsx +++ b/apps/builder/src/components/inputs/CodeEditor.tsx @@ -125,7 +125,7 @@ export const CodeEditor = ({ className={cn( "group relative isolate border rounded-md [&_.cm-editor]:font-mono [&_.cm-editor]:text-sm min-h-(--editor-min-height)", !withLineNumbers && "[&_.cm-gutters]:hidden", - "[&_.cm-editor]:rounded-md [&_.cm-editor]:outline-none has-[.cm-focused]:ring-2 transition-[box-shadow,border-color] has-[.cm-focused]:border-transparent ring-orange-7 [&_.cm-scroller]:rounded-md [&_.cm-scroller]:overflow-auto", + "[&_.cm-editor]:rounded-md [&_.cm-editor]:outline-none! has-[.cm-focused]:ring-2 transition-[box-shadow,border-color] has-[.cm-focused]:border-transparent ring-orange-7 [&_.cm-scroller]:rounded-md [&_.cm-scroller]:overflow-auto", isReadOnly ? undefined : "[&_.cm-editor]:max-h-(--editor-max-height)", className, )}