mirror of
https://github.com/frappe/books.git
synced 2026-09-25 07:39:43 -05:00
Add default margin right to button component
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
<template functional>
|
||||
<button type="button"
|
||||
:class="['btn btn-sm', 'btn-' + Object.keys(props).find(key => ['primary', 'secondary', 'light', 'dark', 'danger'].includes(key))]"
|
||||
:class="['btn btn-sm', 'mr-2', 'btn-' + Object.keys(props).find(key => ['primary', 'secondary', 'light', 'dark', 'danger'].includes(key))]"
|
||||
v-bind="data.attrs"
|
||||
v-on="listeners"
|
||||
>
|
||||
v-on="listeners">
|
||||
<slot></slot>
|
||||
</button>
|
||||
</template>
|
||||
Reference in New Issue
Block a user