bulma-badge icon indicating copy to clipboard operation
bulma-badge copied to clipboard

Add support for navbar

Open dannysmc95 opened this issue 2 years ago • 0 comments

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>

dannysmc95 avatar May 11 '22 16:05 dannysmc95