Skip to content

Commit 6ed80bf

Browse files
authored
fix(Core): 修复使用 css variable 模式构建时,主题包内的 varMap 配置值会被重复覆盖的问题 (#5002)
1 parent 84eb976 commit 6ed80bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/core/util/_varMap.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$varMap: ();
1+
$varMap: () !default;
22
@function get-compiling-value($cssVarRepresentation) {
33
@if map-has-key($varMap, $cssVarRepresentation) {
44
@return map-get($varMap, $cssVarRepresentation);

0 commit comments

Comments
 (0)