feat(region-select): 兼容问题修复

This commit is contained in:
woody 2025-08-01 13:48:45 +08:00
parent 77e20a6c42
commit 4ae74d241c
1 changed files with 6 additions and 4 deletions

View File

@ -280,7 +280,7 @@ export default {
/* max-width: 680rpx; */
background-color: white;
border-radius: 24rpx;
animation: scale-up 0.3s ease-out;
/* animation: scale-up 0.3s ease-out; */
max-height: 80vh;
display: flex;
flex-direction: column;
@ -317,7 +317,8 @@ export default {
.picker-view {
width: 100%;
height: 500rpx;
height: 600rpx;
/* margin-top: 20rpx; */
}
.picker-item {
@ -325,6 +326,7 @@ export default {
align-items: center;
justify-content: center;
font-size: 24rpx;
line-height: 100rpx;
color: #666;
white-space: nowrap;
overflow: hidden;
@ -367,7 +369,7 @@ export default {
box-shadow: 0 4rpx 12rpx rgba(0, 122, 255, 0.25);
}
@keyframes scale-up {
/* @keyframes scale-up {
from {
transform: scale(0.8);
opacity: 0;
@ -376,5 +378,5 @@ export default {
transform: scale(1);
opacity: 1;
}
}
} */
</style>