CN-35 perf: 动态chart单位高度

This commit is contained in:
chenjinsong
2021-07-01 21:39:10 +08:00
parent 49829ba9fc
commit a3673b3092
7 changed files with 75 additions and 205 deletions

View File

@@ -1,5 +1,4 @@
@import './font/iconfont';
@import './theme';
@import './common';
@import './rightBoxCommon';
@import './tableCommon';

View File

@@ -25,6 +25,15 @@ $--menu-item-hover-fill: $--color-primary; // menu鼠标悬浮、激活时背景
--theme-color-light-90: #FFF5E8; // 默认主题色 浅90%
--theme-color-light-96: #FFFBF6; // 默认主题色 浅90%
--theme-color-light-98: #FFFCF8; // 默认主题色 浅98%
@media only screen and (min-width : 1224px) {
--chart-height-unit: 30px;
}
@media only screen and (min-width : 1824px) {
--chart-height-unit: 40px;
}
@media only screen and (min-width : 2424px) {
--chart-height-unit: 55px;
}
}
$--border-color-primary: #DEDEDE;
@@ -60,11 +69,9 @@ $--chart-single-value-icon-background-color: #E8F6FF;
$--content-right-background-color: #EFF2F5; //右侧背景色
$--chart-height-unit: 40;
/** 改变 icon 字体路径变量并引入element-ui变量文件 **/
$--font-path: '~element-plus/lib/theme-chalk/fonts';
@import "~element-plus/packages/theme-chalk/src/index";
:export {
themeColor: $--color-primary;
chartHeightUnit: $--chart-height-unit;
}