fix(vr-ticket-wallet): limit qr-popup max-height to 80vh to avoid being covered by WeChat global floating menu on iPad
parent
c7cac01528
commit
7db0b8707c
|
|
@ -78,7 +78,7 @@
|
|||
<view
|
||||
class="dot"
|
||||
v-for="(ticket, tIdx) in tickets"
|
||||
:key="'dot-' + tIdx"
|
||||
:key="tIdx"
|
||||
:class="{ 'dot-active': tIdx === currentIndex }"
|
||||
></view>
|
||||
</view>
|
||||
|
|
@ -183,10 +183,11 @@ export default {
|
|||
/* ========== 弹窗容器 ========== */
|
||||
.qr-popup-container {
|
||||
width: 620rpx;
|
||||
max-height: 80vh;
|
||||
background: #111111;
|
||||
color: #ffffff;
|
||||
border-radius: 48rpx;
|
||||
overflow: hidden;
|
||||
overflow-y: auto;
|
||||
border: 4rpx solid #333333;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue