Add "wide" class for form inputs
This commit is contained in:
parent
d1371ace02
commit
965cedf5a2
3 changed files with 14 additions and 20 deletions
|
|
@ -43,7 +43,7 @@ function submit() {
|
|||
:disabled
|
||||
@keypress="textareaKeypress"
|
||||
></textarea>
|
||||
<fieldset>
|
||||
<fieldset class="wide">
|
||||
<label>
|
||||
<input v-model="forceWrap" type="checkbox" :disabled />
|
||||
Force-Wrap
|
||||
|
|
@ -71,9 +71,12 @@ textarea {
|
|||
max-width: fit-content;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
.wide {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
border: none;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue