You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
665 B
Plaintext
38 lines
665 B
Plaintext
/* subPage/components/recordWindow/index.wxss */
|
|
@import "../../../app.wxss";
|
|
.fixed {
|
|
position: fixed;
|
|
top: 0;
|
|
}
|
|
.mask {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: #00000088;
|
|
}
|
|
.main {
|
|
position: fixed;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
padding: 24px 32px 32px;
|
|
box-sizing: border-box;
|
|
border-radius: 10px;
|
|
}
|
|
.customBtn {
|
|
display: inline-block;
|
|
border-radius: 18px;
|
|
font-size: 16px;
|
|
font-weight: 601;
|
|
padding: 0;
|
|
color: #ffffff;
|
|
background-color: #fff;
|
|
border: 1px solid #999;
|
|
height: 36px;
|
|
line-height: 34px;
|
|
box-sizing: border-box;
|
|
margin: 12px 0;
|
|
}
|