You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
553 B
32 lines
553 B
/* pages/home/qrcode/index.wxss */
|
|
.semi-circle {
|
|
width: 100%;
|
|
height: 1000rpx;
|
|
position: relative;
|
|
background: #ffffff;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.semi-circle:after {
|
|
position: absolute;
|
|
content: "";
|
|
width: 20px;
|
|
height: 20px;
|
|
background: #f1f1f1;
|
|
border-radius: 100%;
|
|
right: 0;
|
|
top: 770rpx;
|
|
transform: translate(50%, -50%);
|
|
}
|
|
|
|
.semi-circle:before {
|
|
position: absolute;
|
|
content: "";
|
|
width: 20px;
|
|
height: 20px;
|
|
background: #f1f1f1;
|
|
border-radius: 100%;
|
|
left: 0;
|
|
top: 770rpx;
|
|
transform: translate(-50%, -50%);
|
|
}
|