I have an issue with bootstrap-vue navitem. I cannot set the witdh of the components, therefore when I change the language of my website the navbar items jump around.
This is what it looks like:
The code looks like this and i tried adjusting the width with element, then I added a class and still nothing happened
<b-nav-item right href="/">
{{ $t("header.Login_Header") }}
</b-nav-item>
<b-nav-item right href="/">
{{ $t("header.Register_Header") }}
</b-nav-item>
<b-nav-item right href="/">
{{ $t("header.LoginUser_Header") }}
</b-nav-item>
<b-nav-item right href="/"
@click="logout">
{{ $t("header.Logout_Header") }}
</b-nav-item>
</b-navbar-nav>
b-navbar-item{
width: 5%;
}
Any help would be nice. Thank you.
component.