more stylesheet/ui standardization

This commit is contained in:
Dustin Farley
2026-03-21 01:15:26 -07:00
parent dcfb1f1dd3
commit 1ceed15aa0
13 changed files with 339 additions and 450 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
<div class="input-section">
<div class="input-header">
<label for="decoder-input">Paste any encoded text to decode</label>
<select v-model="selectedDecoder" @change="runUniversalDecode" style="margin-left: 15px; padding: 5px 10px; border-radius: 6px; border: 1px solid var(--input-border); background: var(--button-bg); color: var(--text);">
<select v-model="selectedDecoder" @change="runUniversalDecode" class="decoder-method-select">
<option value="auto">🔍 Auto-detect</option>
<option v-for="transform in getAllTransformsWithReverse()" :key="transform.name" :value="transform.name">
{{ transform.name }}