Shirinkflate the pencil

This commit is contained in:
Cohee
2024-12-31 15:18:44 +02:00
parent 227201a5fc
commit 9ad9877d3e

View File

@ -1518,7 +1518,7 @@ class PromptManager {
let detachSpanHtml = ''; let detachSpanHtml = '';
if (this.isPromptDeletionAllowed(prompt)) { if (this.isPromptDeletionAllowed(prompt)) {
detachSpanHtml = ` detachSpanHtml = `
<span title="Remove" class="prompt-manager-detach-action caution fa-solid fa-chain-broken"></span> <span title="Remove" class="prompt-manager-detach-action caution fa-solid fa-chain-broken fa-xs"></span>
`; `;
} else { } else {
detachSpanHtml = '<span class="fa-solid"></span>'; detachSpanHtml = '<span class="fa-solid"></span>';
@ -1527,7 +1527,7 @@ class PromptManager {
let editSpanHtml = ''; let editSpanHtml = '';
if (this.isPromptEditAllowed(prompt)) { if (this.isPromptEditAllowed(prompt)) {
editSpanHtml = ` editSpanHtml = `
<span title="edit" class="prompt-manager-edit-action fa-solid fa-pencil"></span> <span title="edit" class="prompt-manager-edit-action fa-solid fa-pencil fa-xs"></span>
`; `;
} else { } else {
editSpanHtml = '<span class="fa-solid"></span>'; editSpanHtml = '<span class="fa-solid"></span>';