disable smart quotes and capitalization in js field

+ use bootstrap styling
This commit is contained in:
Damien Elmes 2021-06-24 17:59:30 +10:00
parent b693bdbf28
commit d94c878ce3
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
</Col> </Col>
</Row> </Row>
<textarea bind:value /> <textarea class="form-control" bind:value spellcheck="false" autocapitalize="none" />
<style> <style>
.text { .text {

View File

@ -45,7 +45,7 @@ $tooltip-max-width: 300px;
} }
} }
textarea { textarea.form-control {
color: var(--text-fg); color: var(--text-fg);
background-color: var(--frame-bg); background-color: var(--frame-bg) !important;
} }