finally make consistent focus ring for messageinput

This commit is contained in:
hippoz 2022-09-01 21:07:53 +03:00
parent 1c8d2838c4
commit c84d95d0e3
Signed by: hippoz
GPG key ID: 7C52899193467641
2 changed files with 5 additions and 1 deletions

View file

@ -12,7 +12,7 @@
replyString += `> ${line}\n`; replyString += `> ${line}\n`;
}); });
replyString += `@${message.author_username} `; replyString += `@${message.author_username}: `;
setMessageInputEvent.update(replyString); setMessageInputEvent.update(replyString);
}; };

View file

@ -145,6 +145,10 @@
resize: none; resize: none;
} }
.message-input:focus-visible {
outline: 2px solid var(--purple-2);
}
.message-input::placeholder { .message-input::placeholder {
color: var(--foreground-color-4); color: var(--foreground-color-4);
} }