fix(Dialog): fix the rounded corners of shadow when button is clicked (#11863)

This commit is contained in:
Mikasa33 2023-05-17 10:21:05 +08:00 committed by GitHub
parent 57f115bee2
commit cff0631b2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,6 +100,7 @@
height: var(--van-dialog-button-height);
margin: 0;
border: 0;
border-radius: 0;
}
&__confirm {
@ -129,6 +130,18 @@
.van-dialog__confirm {
color: var(--van-white);
}
.van-action-bar-button {
&--first {
border-top-left-radius: var(--van-radius-max);
border-bottom-left-radius: var(--van-radius-max);
}
&--last {
border-top-right-radius: var(--van-radius-max);
border-bottom-right-radius: var(--van-radius-max);
}
}
}
&-bounce-enter-from {