When using the AdminLTE theme, I noticed that when I collapse the sidebar, the menu title gets hidden under the pull-right-container icon. See the image below for a better understanding.
Is there a way to display it on a new line?
Below is the code snippet:
<aside class="main-sidebar">
<section class="sidebar" style="height:auto">
<ul class="sidebar-menu tree" style="white-space: normal" data-widget="tree">
<li class="treeview menu-open" style="white-space: normal">
<a href="#">
<i class="fa fa-circle-o"></i>
<span>Demo Test Demo Test </span>
<span class="pull-right-container">
<i class="fa fa-angle-left pull-right"></i>
</span>
</a>
<ul class="treeview-menu" style="display: block;">
<li>
<a href="#">
<div style="width:100%;display:inline-block">
<div style="width:10%;float:left;padding-top: 5px;">
<i class=" fa fa-arrow-circle-right"></i>
</div>
<div style="width:90%;float:right">
This is a test
</div>
</div>
</a>
</li>
</ul>
</li>
</ul>
</section>