Skip to content

Commit 9600681

Browse files
authored
Update form-timepicker.js
1 parent 5fcff52 commit 9600681

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/form-timepicker/form-timepicker.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,7 @@ export const BFormTimepicker = /*#__PURE__*/ Vue.extend({
405405
h(
406406
BButton,
407407
{
408+
staticClass: 'mx-1',
408409
props: { size: 'sm', disabled: disabled || readonly, variant: this.nowButtonVariant },
409410
attrs: { 'aria-label': label || null },
410411
on: { click: this.onNowButton }
@@ -420,6 +421,7 @@ export const BFormTimepicker = /*#__PURE__*/ Vue.extend({
420421
h(
421422
BButton,
422423
{
424+
staticClass: 'mx-1',
423425
props: { size: 'sm', disabled: disabled || readonly, variant: this.resetButtonVariant },
424426
attrs: { 'aria-label': label || null },
425427
on: { click: this.onResetButton }
@@ -435,6 +437,7 @@ export const BFormTimepicker = /*#__PURE__*/ Vue.extend({
435437
h(
436438
BButton,
437439
{
440+
staticClass: 'mx-1',
438441
props: { size: 'sm', disabled: disabled, variant: this.closeButtonVariant },
439442
attrs: { 'aria-label': closeLabel || null },
440443
on: { click: this.onCloseButton }
@@ -449,7 +452,7 @@ export const BFormTimepicker = /*#__PURE__*/ Vue.extend({
449452
h(
450453
'div',
451454
{
452-
staticClass: 'b-form-date-controls d-flex flex-wrap',
455+
staticClass: 'b-form-date-controls d-flex flex-wrap mx-n1',
453456
class: {
454457
'justify-content-between': $controls.length > 1,
455458
'justify-content-end': $controls.length < 2

0 commit comments

Comments
 (0)