bundles.Add(new StyleBundle("~/Content/css").Include( "~/Content/sb-admin-2.min.css", "~/content/toastr.min.css", "~/content/myportal.css", "~/content/fontawesome.min.css", "~/content/regular.min.css", "~/content/solid.min.css", "~/Content/brands.min.css", "~/Content/site.css", "~/Content/ej2/bootstrap4.css"));
And the scripts:
bundles.Add(new ScriptBundle("~/bundles/syncfusion").Include( "~/Scripts/ej2/ej2.min.js"));
These are then loaded in the _Layout.cshtml:
@Styles.Render("~/Content/css")@Scripts.Render("~/bundles/syncfusion")
From Package Location |
ThemeStudio Generated CSS |
|
|
I used Theme Studio and "lost" my search icon. (The icon worked with the default tailwind.css, but didn't work when I made a customized css for tailwind with Theme Studio.)
The solution for me was to add this to my site.css:
.e-icons.e-search:before {
content: "\e737";
}
Hope this helps anyone stuck on the same issue. :)