We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 603c237 + e44837d commit bf93178Copy full SHA for bf93178
1 file changed
src/core/sass/brand.ts
@@ -567,6 +567,15 @@ export async function brandSassLayers(
567
const brand = await project.resolveBrand(fileName);
568
const sassLayers: SassLayer[] = [];
569
570
+ if (brand) {
571
+ sassLayers.push({
572
+ defaults: '$theme: "brand" !default;',
573
+ uses: "",
574
+ functions: "",
575
+ mixins: "",
576
+ rules: "",
577
+ });
578
+ }
579
if (brand?.data.color) {
580
sassLayers.push(brandColorLayer(brand, nameMap));
581
}
0 commit comments