From 0e42985b43a110247e17274ff048e32599955e63 Mon Sep 17 00:00:00 2001 From: kch12 Date: Mon, 17 Mar 2025 12:43:17 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20url=20=EC=8A=A4=ED=83=80=EC=9D=BC=20?= =?UTF-8?q?=ED=86=B5=EC=9D=BC=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/editor/common/link.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/editor/common/link.ts b/src/components/editor/common/link.ts index 85563cb..70f4add 100644 --- a/src/components/editor/common/link.ts +++ b/src/components/editor/common/link.ts @@ -70,7 +70,7 @@ export const createLinkNodeHTML = (attrs: LinkAttributes): HTMLElement => { summaryElement.textContent = attrs.summary; const urlElement = document.createElement('p'); - urlElement.className = 'mt-[9px] text-[12px] text-sky-600 no-underline truncate'; + urlElement.className = 'text-[12px] mt-[9px] text-sky-600 no-underline truncate'; urlElement.textContent = formattedUrl; textWrapper.appendChild(titleElement); @@ -128,7 +128,7 @@ export const createLinkNodeHTML = (attrs: LinkAttributes): HTMLElement => { const urlElement = document.createElement('p'); urlElement.className = - 'mt-[9px] text-sky-600 text-[13px] no-underline truncate'; + 'text-[12px] mt-[9px] text-sky-600 no-underline truncate'; urlElement.textContent = formattedUrl; textWrapper.appendChild(titleElement);