Files
venue_wx/component/actionSheet/actionSheet.wxss
2020-06-21 16:27:58 +08:00

32 lines
499 B
Plaintext

/* component/actionSheet/actionSheet.wxss */
.popup-box {
position: fixed;
top: 0;
left: 0;
display: flex;
align-items: flex-end;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 1;
}
.popup-box .body {
flex: 1;
background: #f5f5f5;
}
.popup-box .body .cell {
width: 100%;
height: 80rpx;
margin-bottom: 2rpx;
line-height: 80rpx;
text-align: center;
font-size: 26rpx;
background: #FFF;
}
.popup-box .body .cell.cancel {
margin-top: 8rpx;
}