Fix repeat after layout

This commit is contained in:
kolaente 2020-11-28 16:02:38 +01:00
parent 3f2056bbf9
commit f22942e883
No known key found for this signature in database
GPG key ID: F40E70337AB24C9B
2 changed files with 27 additions and 21 deletions

View file

@ -1,9 +1,10 @@
<template> <template>
<div class="control repeat-after-input columns"> <div class="control repeat-after-input columns">
<p class="column is-1"> <div class="is-flex column">
<p class="pr-4">
Each Each
</p> </p>
<div class="column is-7 field has-addons"> <div class="field has-addons is-fullwidth">
<div class="control"> <div class="control">
<input <input
:disabled="disabled" :disabled="disabled"
@ -24,6 +25,7 @@
</div> </div>
</div> </div>
</div> </div>
</div>
<fancycheckbox <fancycheckbox
:disabled="disabled" :disabled="disabled"
@change="updateData" @change="updateData"

View file

@ -94,3 +94,7 @@ button.table {
.has-no-shadow { .has-no-shadow {
box-shadow: none !important; box-shadow: none !important;
} }
.is-fullwidth {
width: 100%;
}