hku-class/miniprogram/pages/timeline-create/index.wxss
2026-05-12 23:10:14 +08:00

47 lines
692 B
Plaintext

input {
margin-top: 12rpx;
height: 72rpx;
font-size: 30rpx;
}
textarea {
width: 100%;
min-height: 220rpx;
margin-top: 12rpx;
font-size: 28rpx;
}
.image-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12rpx;
margin-top: 18rpx;
}
.image-cell {
position: relative;
overflow: hidden;
height: 180rpx;
border-radius: 20rpx;
background: #efe0ca;
}
.image-cell image {
width: 100%;
height: 100%;
}
.image-remove {
position: absolute;
top: 8rpx;
right: 8rpx;
width: 42rpx;
height: 42rpx;
border-radius: 999rpx;
background: rgba(47, 33, 28, 0.72);
color: #fff;
font-size: 32rpx;
line-height: 38rpx;
text-align: center;
}