From 837ab036a8c75d53e8578a877172d12f5e7ed55f Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Thu, 31 Jul 2025 17:13:45 +0900 Subject: [PATCH] Enhance banner link style and text in editor.html Added custom CSS for the banner link to improve appearance and hover effect. Updated the banner link text to include a heart emoji for better visual appeal. --- WelsonJS.Toolkit/WelsonJS.Launcher/editor.html | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/editor.html b/WelsonJS.Toolkit/WelsonJS.Launcher/editor.html index fa306ac..c2061c0 100644 --- a/WelsonJS.Toolkit/WelsonJS.Launcher/editor.html +++ b/WelsonJS.Toolkit/WelsonJS.Launcher/editor.html @@ -38,6 +38,17 @@ background-color: #f1f1f1; font-size: 14px; } + + .banner a { + text-decoration: none; + color: #000; + } + + .banner a:hover { + text-decoration: none; + font-weight: bold; + color: #000; + } @@ -659,7 +670,7 @@ _e(Editor, { editorRef }), _e(PromptEditor, { promptEditorRef, promptMessagesRef }) ), - _e('div', { className: 'banner' }, _e('a', { href: 'https://github.com/gnh1201/welsonjs' }, 'Contribute this project')), + _e('div', { className: 'banner' }, _e('a', { href: 'https://github.com/gnh1201/welsonjs' }, '❤️ Contribute this project')), ); }