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
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public static List<MenuItem> GenerateMenus(this IStringLocalizer<NavMenu> Locali
item = new DemoMenuItem()
{
Text = Localizer["SocketComponents"],
Icon = "fa-solid fa-square-binary text-danger"
Icon = "fa-fw fa-solid fa-square-binary text-danger"
};
AddSocket(item);

Expand Down Expand Up @@ -130,7 +130,7 @@ public static List<MenuItem> GenerateMenus(this IStringLocalizer<NavMenu> Locali
item = new DemoMenuItem()
{
Text = Localizer["Components"],
Icon = "fa-solid fa-fw fa-heart fa-beat icon-summary",
Icon = "fa-fw fa-solid fa-heart fa-beat icon-summary",
Url = "components"
};
AddSummary(item);
Expand Down
2 changes: 1 addition & 1 deletion src/BootstrapBlazor/Components/Tab/Tab.razor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@
background-color: var(--bb-tabs-item-hover-bg-color);
}

.btn {
&.tabs-nav-toolbar-fs {
padding: 0;
}
}
Expand Down
Loading