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
is there a way to add this without hacking in the package css part, as the ul part is produced by the package.
tried with centered property, but all the tabs will be stacked together, I am using vue-tabs with bootstrap 4.
Update: found the below width rule controls on this @media (min-width: 768px)
<style>…</style>
.vue-tabs .nav-justified > li, .vue-tabs .nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
anyway to override this? So far tried to override inside vue single page component <style> part, no luck.
Cheers.
The text was updated successfully, but these errors were encountered:
I know it's late, but if someone still has this issue, please note that is probably Bootstrap who mess with nav class.
Try to create a class on your vue-tabs, and then :
.my-class .nav {
display: block;
}
Like in this example, https://jsfiddle.net/b44cc4dq/56/
there is a nav-justified class,
is there a way to add this without hacking in the package css part, as the ul part is produced by the package.
tried with centered property, but all the tabs will be stacked together, I am using vue-tabs with bootstrap 4.
Update: found the below width rule controls on this
@media (min-width: 768px) <style>…</style>
.vue-tabs .nav-justified > li, .vue-tabs .nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
anyway to override this? So far tried to override inside vue single page component <style> part, no luck.
Cheers.
The text was updated successfully, but these errors were encountered: