mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
fix(icon): fix location error when custom-class
This commit is contained in:
parent
e0df0181f2
commit
31b17e910b
@ -2,13 +2,16 @@
|
||||
@import '@vant/icons/src/index.less';
|
||||
|
||||
:host {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.van-icon {
|
||||
&--custom {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
&--image {
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
|
@ -9,6 +9,10 @@ function isImage(name) {
|
||||
function rootClass(data) {
|
||||
var classes = ['custom-class'];
|
||||
|
||||
if (data.classPrefix !== 'van-icon') {
|
||||
classes.push('van-icon--custom')
|
||||
}
|
||||
|
||||
if (data.classPrefix != null) {
|
||||
classes.push(data.classPrefix);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user