74 lines
1.2 KiB
Plaintext
74 lines
1.2 KiB
Plaintext
/* packageI/components/signature/signature.wxss */
|
|
.signature-modal {
|
|
/* position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 3; */
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.modal-mask {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 4;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.modal-content-area {
|
|
position: relative;
|
|
z-index: 5;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100vw;
|
|
|
|
/* height: 40vh; */
|
|
|
|
/* background-color: #ffffff; */
|
|
}
|
|
|
|
.modal-content {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.modal-canvas {
|
|
width: 92vw;
|
|
height: 40vh;
|
|
margin: 0 auto;
|
|
border-radius: 18rpx;
|
|
box-sizing: border-box;
|
|
overflow: hidden;
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.modal-bottom {
|
|
padding: 14px 16px;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.modal-btn {
|
|
width: 85px;
|
|
height: 25px;
|
|
line-height: 25px;
|
|
border-radius: 3px;
|
|
border: solid 1rpx #f14e4e;
|
|
color: #f14e4e;
|
|
margin-left: 16px;
|
|
text-align: center;
|
|
}
|
|
|
|
.modal-btn:nth-child(1) {
|
|
background: #f14e4e;
|
|
color: #fff;
|
|
}
|