From 55eb50faabf4e1ffa6600a49ba71f2596b93e4b3 Mon Sep 17 00:00:00 2001 From: keven1024 Date: Thu, 9 Apr 2026 08:13:42 +0800 Subject: [PATCH] fix(front): update outline-none utility in MarkdownRender and Tiptap components for consistent styling --- front/components/MarkdownRender.vue | 2 +- front/components/Tiptap/Index.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/front/components/MarkdownRender.vue b/front/components/MarkdownRender.vue index 23c29e7..4456652 100644 --- a/front/components/MarkdownRender.vue +++ b/front/components/MarkdownRender.vue @@ -14,7 +14,7 @@ const renderHtml = computed(() => {
{ :editor="editor as any" :class=" cx( - 'prose prose-sm bg-white/50 rounded-md p-2 [&>*]:outline-none prose-p:my-1 prose-headings:my-2 prose-pre:mb-0 prose-blockquote:border-black/50 selection:bg-primary/20 max-w-full', + 'prose prose-sm bg-white/50 rounded-md p-2 *:outline-none prose-p:my-1 prose-headings:my-2 prose-pre:mb-0 prose-blockquote:border-black/50 selection:bg-primary/20 max-w-full', props.class ) "