You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When migrating to bootstrap-vue-next, I noticed that in the following example the button in the flex container with justify-content-between set will be shifted to the left:
<template>
<divstyle="margin: 10vw; border: 1pxsolidgrey">
<divclass="d-flex justify-content-between align-items-center">
Kurse VGS 1
<BButtonv-b-tooltip="'test'"size="sm"class="btn-smaller">
Test
</BButton>
</div>
</div>
</template>
This is due to a placeholder <span>-element being added by the v-b-tooltip directive after the triggering button.
I'm not sure if this is a concrete bug or intended behaviour, where something needs to be added to work as in bootstrap-vue.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When migrating to
bootstrap-vue-next
, I noticed that in the following example the button in the flex container withjustify-content-between
set will be shifted to the left:This is due to a placeholder
<span>
-element being added by the v-b-tooltip directive after the triggering button.I'm not sure if this is a concrete bug or intended behaviour, where something needs to be added to work as in
bootstrap-vue
.Reproduction: https://stackblitz.com/edit/github-76t6sp?file=src%2FApp.vue
Beta Was this translation helpful? Give feedback.
All reactions