Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion blazorbootstrap/Components/Tabs/Tabs.razor
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<div class="@TabContentCssClass">
@foreach (var t in tabs)
{
<div class="tab-pane @(EnableFadeEffect ? "fade" : "")" id="nav-@t.Id" role="tabpanel" aria-labelledby="@t.Id">
<div id="[email protected]" class="@BootstrapClass.TabPane @(EnableFadeEffect ? BootstrapClass.Fade : "") @t.Class" style="@t.Style" role="tabpanel" aria-labelledby="@t.Id">
@t.Content
</div>
}
Expand Down
2 changes: 2 additions & 0 deletions blazorbootstrap/Constants/BootstrapClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ public static class BootstrapClass

public const string Spinner = "spinner";

public const string TabPane = "tab-pane";

public const string TableResponsive = "table-responsive";
public const string TableSticky = "bb-table-sticky";

Expand Down
Loading