Fix sidebar and textarea size

This commit is contained in:
kwaroran
2024-04-25 02:30:10 +09:00
parent f1dfabc408
commit 5bd57df411
11 changed files with 31 additions and 30 deletions

View File

@@ -28,12 +28,12 @@
<span class="text-textcolor text-lg">Jinja</span>
<TextAreaInput onInput={onInput} bind:value={input} height="32" />
<TextAreaInput onInput={onInput} bind:value={input} />
<span class="text-textcolor text-lg">Data (JSON)</span>
<TextAreaInput onInput={onInput} bind:value={json} height="32" />
<TextAreaInput onInput={onInput} bind:value={json} />
<span class="text-textcolor text-lg">Result</span>
<TextAreaInput value={output} height="32" />
<TextAreaInput value={output} />

View File

@@ -20,8 +20,8 @@
<span class="text-textcolor text-lg">Input</span>
<TextAreaInput onInput={onInput} bind:value={input} height="32" optimaizedInput={false} />
<TextAreaInput onInput={onInput} bind:value={input} optimaizedInput={false} />
<span class="text-textcolor text-lg">Result</span>
<TextAreaInput value={output} height="32" />
<TextAreaInput value={output} />

View File

@@ -22,10 +22,10 @@
<span class="text-textcolor text-lg">Input</span>
<TextAreaInput onInput={onInput} bind:value={input} height="32" optimaizedInput={false} />
<TextAreaInput onInput={onInput} bind:value={input} optimaizedInput={false} />
<span class="text-textcolor text-lg">Result</span>
<TextAreaInput value={output} height="32" />
<TextAreaInput value={output} />
<span class="text-textcolor2 text-lg">{outputLength} {language.tokens}</span>