Use CSS variable monospace font for slash commands in send textarea

6e58f08f3c0f6de5bc173ae3925f6eb71a012510

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
public/scripts/slash-commands.js+1 -1
@@ -4940,7 +4940,7 @@ const sendTextarea = document.querySelector('#send_textarea');
49404940setSlashCommandAutoComplete(sendTextarea);
49414941sendTextarea.addEventListener('input', () => {
49424942 if (sendTextarea.value[0] == '/') {
49434943 sendTextarea.style.fontFamily = 'var(--monoFontFamily, monospace)';
49444944 } else {
49454945 sendTextarea.style.fontFamily = null;
49464946 }