Hey
I am using the Accordion control for displaying my menu.
The last header in this control should be a button (for logout)
I don't get it working, that the button get's 100% of the header width.
Could you please help me to get this done...
What I tried so far, based on your shipped sample:
<SfSidebar @ref="sidebarObj" Width="280px">
<ChildContent>
<span class="e-avatar e-avatar-large e-avatar-circle image"></span>
<div class="text" style="width: 100%;font-size: 30px;text-align: center;">John </div>
<SfAccordion>
<AccordionItems>
<AccordionItem>
<HeaderTemplate>
<div class="container" style="width:100%">
<Syncfusion.Blazor.Buttons.SfButton @onclick="LogOut" Content="Logout" CssClass="e-btn-width" />
</div>
</HeaderTemplate>
</AccordionItem>
</AccordionItems>
</SfAccordion>
</ChildContent>
</SfSidebar>
<style>
.e-btn-width {
border-radius: 0;
width: 100%;
}
</style>
THX a lot in advance