mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +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';
|
@import '@vant/icons/src/index.less';
|
||||||
|
|
||||||
:host {
|
:host {
|
||||||
position: relative;
|
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.van-icon {
|
.van-icon {
|
||||||
|
&--custom {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
&--image {
|
&--image {
|
||||||
width: 1em;
|
width: 1em;
|
||||||
height: 1em;
|
height: 1em;
|
||||||
|
@ -9,6 +9,10 @@ function isImage(name) {
|
|||||||
function rootClass(data) {
|
function rootClass(data) {
|
||||||
var classes = ['custom-class'];
|
var classes = ['custom-class'];
|
||||||
|
|
||||||
|
if (data.classPrefix !== 'van-icon') {
|
||||||
|
classes.push('van-icon--custom')
|
||||||
|
}
|
||||||
|
|
||||||
if (data.classPrefix != null) {
|
if (data.classPrefix != null) {
|
||||||
classes.push(data.classPrefix);
|
classes.push(data.classPrefix);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user