bulma-badge
bulma-badge copied to clipboard
Add support for navbar
I am using this with navbar-link
inside of the header, and it currently does not work very well, even though position relative is applied to it.
I have added the below to fix the issue, although I am sure there is a better way to do this.
&.is-left,
&.is-right,
&.is-top,
&.is-top-left,
&.is-top-right,
&.is-bottom,
&.is-bottom-left,
&.is-bottom-right
&.is-nav
transform: translate(-5px, 10px)
Using it like so:
<div class="navbar-item has-dropdown is-hoverable is-icon">
<a class="navbar-link">
<span class="badge is-nav is-top-right" />
<i class="fas fa-code"></i>
</a>
</div>