feat(ui): add Sign toggle and adjust selector widths

This commit is contained in:
2026-09-12 15:16:23 -07:00
parent 7c024baac0
commit f15ae68669
13 changed files with 148 additions and 108 deletions

View File

@@ -7,6 +7,9 @@ const encoderDropdown = document.getElementById('encoder');
const cipherDropdown = document.getElementById('cipher');
document.getElementById('encodeButton').addEventListener('click', ACT);
document.getElementById('decodeButton').addEventListener('click', ACT);
document.getElementById('sign').addEventListener('click', e =>
e.target.classList.toggle('on')
);
function ACT(event) {
if (textarea.value === '') {