From 206fc12a937f65e4b58fbb10a5dc916cecef7625 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期一, 15 九月 2025 17:36:26 +0800 Subject: [PATCH] fix: bug --- src/style/element/index.scss | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/style/element/index.scss b/src/style/element/index.scss index cced7f4..3276a33 100644 --- a/src/style/element/index.scss +++ b/src/style/element/index.scss @@ -1,4 +1,5 @@ /* stylelint-disable */ +@use 'sass:map'; @use '../var.scss' as *; // @forward 'element-plus/theme-chalk/src/mixins/config.scss' with ( @@ -8,13 +9,13 @@ @forward 'element-plus/theme-chalk/src/common/var.scss' with ( $colors: ( 'primary': ( - 'base': map-get($bole-colors, 'primary', 'base'), + 'base': map.get($bole-colors, 'primary', 'base'), ), ), $text-color: ( - 'primary': map-get($bole-text-color, 'primary'), - 'regular': map-get($bole-text-color, 'regular'), - 'secondary': map-get($bole-text-color, 'secondary'), + 'primary': map.get($bole-text-color, 'primary'), + 'regular': map.get($bole-text-color, 'regular'), + 'secondary': map.get($bole-text-color, 'secondary'), ) ); -- Gitblit v1.9.1