mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore: minus css var (#10153)
This commit is contained in:
parent
3317fcbb0c
commit
eab5792153
@ -84,7 +84,7 @@
|
|||||||
border-top-color: currentColor;
|
border-top-color: currentColor;
|
||||||
border-bottom-width: 0;
|
border-bottom-width: 0;
|
||||||
transform: translate(-50%, 0%);
|
transform: translate(-50%, 0%);
|
||||||
margin-bottom: calc(0px - var(--van-popover-arrow-size));
|
margin-bottom: calc(var(--van-popover-arrow-size) * -1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,7 +118,7 @@
|
|||||||
border-right-width: 0;
|
border-right-width: 0;
|
||||||
border-left-color: currentColor;
|
border-left-color: currentColor;
|
||||||
transform: translate(0%, -50%);
|
transform: translate(0%, -50%);
|
||||||
margin-right: calc(0px - var(--van-popover-arrow-size));
|
margin-right: calc(var(--van-popover-arrow-size) * -1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -152,7 +152,7 @@
|
|||||||
border-right-color: currentColor;
|
border-right-color: currentColor;
|
||||||
border-left-width: 0;
|
border-left-width: 0;
|
||||||
transform: translate(0%, -50%);
|
transform: translate(0%, -50%);
|
||||||
margin-left: calc(0px - var(--van-popover-arrow-size));
|
margin-left: calc(var(--van-popover-arrow-size) * -1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -186,7 +186,7 @@
|
|||||||
border-top-width: 0;
|
border-top-width: 0;
|
||||||
border-bottom-color: currentColor;
|
border-bottom-color: currentColor;
|
||||||
transform: translate(-50%, 0%);
|
transform: translate(-50%, 0%);
|
||||||
margin-top: calc(0px - var(--van-popover-arrow-size));
|
margin-top: calc(var(--van-popover-arrow-size) * -1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user