refacor(transformers): use monospace font for JSON and SQL text areas (#476)

* feat(c-input): Add monospace prop

* feat: use monospace input for json and sql inputs
This commit is contained in:
Marvin 2023-06-23 16:51:52 +02:00 committed by GitHub
parent 363c2e47e6
commit ba4876d0d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 3 deletions

View file

@ -64,16 +64,17 @@ const prettySQL = computed(() => formatSQL(rawSQL.value, config));
</div>
<n-form-item label="Your SQL query">
<n-input
<c-input-text
ref="inputElement"
v-model:value="rawSQL"
placeholder="Put your SQL query here..."
type="textarea"
rows="20"
multiline
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
monospace
/>
</n-form-item>
<n-form-item label="Prettify version of your query">