Shopware 6.4.7
In meiner base.scss werden in der :root Pseudoklasse css Variablen definiert.
:root {
--text-color: $sw-text-color;
--test-var: #000;
}
.test-class{
color: $sw-text-color;
}
Wird mit theme:compile
wie folgt kompiliert:
:root {
--text-color: #000;
--test-var: #000;
}
.test-class{
color: #000;
}
In Shopware 6.4.9 wird es nun so kompiliert:
:root {
--test-var: #000;
}
.test-class{
color: #000;
}
Die Variablen werden einfach nicht mehr kompiliert. WARUM? Es ist doch manchmal echt zum verzweifeln.