Skip to content

Commit

Permalink
fix(Core): 修复使用 css variable 模式构建时,主题包内的 varMap 配置值会被重复覆盖的问题 (#5002)
Browse files Browse the repository at this point in the history
  • Loading branch information
YSMJ1994 authored Dec 26, 2024
1 parent 84eb976 commit 6ed80bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/core/util/_varMap.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$varMap: ();
$varMap: () !default;
@function get-compiling-value($cssVarRepresentation) {
@if map-has-key($varMap, $cssVarRepresentation) {
@return map-get($varMap, $cssVarRepresentation);
Expand Down

0 comments on commit 6ed80bf

Please sign in to comment.