This is about Bulma.
Is it a bug
This is about the Bulma CSS framework
I'm using Bulma version [0.6.1]
My browser is: Chrome Version 58.0.3029.81 (64-bit)
Elements inside a level-right element are not right-aligned when the level is within a panel-block
<div class="box">
<div class="panel">
<p class="panel-heading">Some heading</p>
<div class="panel-block">
<div class="level">
<div class="level-right">
<div class="level-item">
<p>some content</p>
</div>
</div>
</div>
</div
"some content" should be right-aligned
It is left-aligned
I experienced the same behavior and think it might be related to #812.
In my case, the .level was not taking the full width of the .panel-block.
A workaround is to add the style display: block to your .panel-block.
Moreover, you may need to add an empty .level-left before your .level-right.
Hope this helps!
Than it's a problem with text-overflow. Text doesn't fit the container
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Most helpful comment
I experienced the same behavior and think it might be related to #812.
In my case, the
.levelwas not taking the full width of the.panel-block.A workaround is to add the style
display: blockto your.panel-block.Moreover, you may need to add an empty
.level-leftbefore your.level-right.Hope this helps!