24 lines
372 B
Plaintext
24 lines
372 B
Plaintext
/* pages/index/info.wxss */
|
|
page {
|
|
background-color: #F6F6F6;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: 50% 50%;
|
|
grid-row-gap: 16px;
|
|
grid-column-gap: 16px;
|
|
}
|
|
.camera{
|
|
background-color: #4fab5e3d;
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
border-radius: 50rpx;
|
|
}
|
|
|
|
.dot{
|
|
background-color: #4fab5e3d;
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
border-radius: 60rpx;
|
|
} |