fix(Popover): fix the arrow position of *-start/end placements (#11584)

This commit is contained in:
Fengyuan Chen 2023-02-18 14:51:36 +08:00 committed by GitHub
parent 05f60fe401
commit 388e76b54c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,6 @@
bottom: 0;
border-top-color: currentColor;
border-bottom-width: 0;
transform: translate(-50%, 0%);
margin-bottom: calc(var(--van-popover-arrow-size) * -1);
}
}
@ -91,6 +90,7 @@
.van-popover__arrow {
left: 50%;
transform: translateX(-50%);
}
}
@ -115,7 +115,6 @@
right: 0;
border-right-width: 0;
border-left-color: currentColor;
transform: translate(0%, -50%);
margin-right: calc(var(--van-popover-arrow-size) * -1);
}
}
@ -125,6 +124,7 @@
.van-popover__arrow {
top: 50%;
transform: translateY(-50%);
}
}
@ -149,7 +149,6 @@
left: 0;
border-right-color: currentColor;
border-left-width: 0;
transform: translate(0%, -50%);
margin-left: calc(var(--van-popover-arrow-size) * -1);
}
}
@ -159,6 +158,7 @@
.van-popover__arrow {
top: 50%;
transform: translateY(-50%);
}
}
@ -183,7 +183,6 @@
top: 0;
border-top-width: 0;
border-bottom-color: currentColor;
transform: translate(-50%, 0%);
margin-top: calc(var(--van-popover-arrow-size) * -1);
}
}
@ -193,6 +192,7 @@
.van-popover__arrow {
left: 50%;
transform: translateX(-50%);
}
}