Skip to content

Commit

Permalink
feat: improve dict enqueue style
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanGriffe committed Oct 29, 2021
1 parent 22a18fc commit 64e42fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/enqueue/components/CDictInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
:parseAs="parseValueAs"
@validityUpdate="typedValueValidity = $event"
/>
<button class="btn" type="button" :disabled="isInvalid" @click="addKey">
<button class="btn w-44" type="button" :disabled="isInvalid" @click="addKey">
<pre>+ Add</pre>
</button>
</div>
Expand All @@ -40,7 +40,7 @@
:isInvalid="!valueMap[index].valueValidity"
:parseAs="parseValueAs"
/>
<button type="button" @click="deleteKey(index)" class="btn btn-danger">Remove</button>
<button type="button" @click="deleteKey(index)" class="btn btn-danger w-44">Remove</button>
</div>
</div>
</template>
Expand Down

0 comments on commit 64e42fc

Please sign in to comment.