30 lines
423 B
Plaintext
30 lines
423 B
Plaintext
/* pages/community/info.wxss */
|
|
|
|
.avatar {
|
|
height: 80rpx;
|
|
width: 80rpx;
|
|
border: white 2rpx solid;
|
|
border-radius: 60rpx;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: 32% 32% 32%;
|
|
grid-row-gap: 8px;
|
|
grid-column-gap: 8px;
|
|
}
|
|
|
|
.item {
|
|
background-color: #f1f1f1;
|
|
width: 100%;
|
|
}
|
|
|
|
.bottom {
|
|
position: fixed;
|
|
bottom: 0;
|
|
background-color: #F6F6F6;
|
|
left: 0;
|
|
right: 0;
|
|
padding:32rpx;
|
|
z-index: 2;
|
|
} |