Try your search with a different keyword or use * as a wildcard.
@using Nop.Core.Domain.Catalog
@using Nop.Services.Helpers
@inject CatalogSettings catalogSettings
@inject IThemeContext themeContext
@inject IUserAgentHelper userAgentHelper
@{
Layout ="";
var themeName = await themeContext.GetWorkingThemeNameAsync();
var supportRtl = await Html.ShouldUseRtlThemeAsync();
//add main CSS file
NopHtml.AppendCssFileParts($"~/Themes/{themeName}/Content/css/styles{(supportRtl ? ".rtl" : "")}.css");
//add swiper css file
if (catalogSettings.DisplayAllPicturesOnCatalogPages)
{
NopHtml.AppendCssFileParts("~/lib_npm/swiper/swiper-bundle.min.css");
}
//add jQuery UI css file
NopHtml.AppendCssFileParts("~/lib_npm/jquery-ui-dist/jquery-ui.min.css");
}