From eab57921537f3b66143c73f80543bedc1273cc3a Mon Sep 17 00:00:00 2001 From: neverland Date: Thu, 6 Jan 2022 11:23:59 +0800 Subject: [PATCH] chore: minus css var (#10153) --- packages/vant/src/popover/index.less | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/vant/src/popover/index.less b/packages/vant/src/popover/index.less index 9c37fc794..a2d71a9e9 100644 --- a/packages/vant/src/popover/index.less +++ b/packages/vant/src/popover/index.less @@ -84,7 +84,7 @@ border-top-color: currentColor; border-bottom-width: 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-left-color: currentColor; 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-left-width: 0; 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-bottom-color: currentColor; transform: translate(-50%, 0%); - margin-top: calc(0px - var(--van-popover-arrow-size)); + margin-top: calc(var(--van-popover-arrow-size) * -1); } }