Skip to content

Commit

Permalink
add padding to help text
Browse files Browse the repository at this point in the history
  • Loading branch information
alberto-bottarini committed Dec 28, 2020
1 parent 58fc969 commit 60f4ca0
Show file tree
Hide file tree
Showing 2 changed files with 27,004 additions and 2 deletions.
27,003 changes: 27,002 additions & 1 deletion dist/js/field.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion resources/js/components/FormField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
<span v-if="field.showCounts" class="pr-2 float-left border-60 whitespace-no-wrap" :class="{ 'border-r mr-2': field.helpText }">
{{ selected.length }} / {{ available.length }}
</span>
<span class="float-left border-60" :class="{'border-r mr-2': field.showPreview }">

<span class="float-left border-60" :class="{'border-r pr-2 mr-2': field.showPreview }">
<help-text class="help-text" v-if="field.helpText"> {{ field.helpText }} </help-text>
</span>

Expand Down

0 comments on commit 60f4ca0

Please sign in to comment.