diff --git a/packages/web/src/javascripts/Components/SuperEditor/Plugins/EmptyLinePlaceholderPlugin.tsx b/packages/web/src/javascripts/Components/SuperEditor/Plugins/EmptyLinePlaceholderPlugin.tsx index 31cc9a9cd..0ed7ea433 100644 --- a/packages/web/src/javascripts/Components/SuperEditor/Plugins/EmptyLinePlaceholderPlugin.tsx +++ b/packages/web/src/javascripts/Components/SuperEditor/Plugins/EmptyLinePlaceholderPlugin.tsx @@ -43,7 +43,7 @@ export const EmptyLinePlaceholderPlugin = () => { if (!text && editor.isEditable()) { placeholder.style.top = `${rect.y}px` placeholder.style.left = `${rect.x - parentRect.x + rootRect.x}px` - placeholder.style.opacity = '1' + placeholder.style.opacity = '0.65' } else { placeholder.style.opacity = '0' } @@ -86,8 +86,7 @@ export const EmptyLinePlaceholderPlugin = () => { className="super-empty-line-placeholder pointer-events-none fixed text-passive-1 opacity-0" ref={placeholderElementRef} > - Type / for - commands... + Type / for commands... ) }