I use semantic-ui to build the sidebar.
The following example shows a sidebar with a button pushed down with positioning:absolute. Is there an ideotic way to organize this in semantics-ui without having to create custom styles? The class bottomdoes not apply to buttons.
<div class="ui very thin styled sidebar active">
<div class="ui fluid vertical icon buttons">
<div class="ui facebook button">
<i class="facebook icon"></i>
</div>
<div class="ui twitter button">
<i class="twitter icon"></i>
</div>
<div class="ui google plus button">
<i class="google plus icon"></i>
</div>
<div class="ui repeat button" style="position:absolute;bottom:10px;">
<i class="reorder icon"></i>
</div>
</div>
</div>
shaft source
share