fix(theme-chalk): fixed the wrong background color of timeline-item (#3165)

This commit is contained in:
msidolphin 2021-09-01 14:29:20 +08:00 committed by GitHub
parent 7556a1b2d1
commit bfe23ce820
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,9 @@
}
@each $type in (primary, success, warning, danger, info) {
background-color: var(--el-color-#{$type});
@include m($type) {
background-color: var(--el-color-#{$type});
}
}
}