Merge branch 'master' into develop

This commit is contained in:
Barış Soner Uşaklı
2025-09-04 10:48:59 -04:00

View File

@@ -56,9 +56,15 @@ function boostrapImport(themeData) {
function bsvariables() {
if (bootswatchSkin) {
if (isCustomSkin) {
return themeData._variables || '';
return `
${bsVariables}
${themeData._variables || ''}
`;
}
return `@import "bootswatch/dist/${bootswatchSkin}/variables";`;
return `
${bsVariables}
@import "bootswatch/dist/${bootswatchSkin}/variables";
`;
}
return bsVariables;
}