Files
doodle-mini/miniprogram/components/shape-card/shape-card.less
T
2025-09-12 16:56:00 +08:00

43 lines
894 B
Plaintext

.shape-card {
position: relative;
width: 186rpx;
// height: 260rpx;
border-radius: 16rpx;
background: #ffffff;
border: 1rpx solid #e8e8e8;
box-shadow: 0rpx 16rpx 24rpx rgba(184, 210, 188, 0.3);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 16rpx 0;
box-sizing: border-box;
.shape-card-img {
width: 140rpx;
height: 140rpx;
display: block;
}
.divider {
width: 150rpx;
height: 1rpx;
background-color: #ddd;
margin-block: 16rpx;
}
.shape-color {
width: 60rpx;
height: 60rpx;
border-radius: 50%;
border: 1rpx solid #141414;
background-color: skyblue;
}
.delete-icon {
position: absolute;
top: -16rpx;
right: -16rpx;
color: #ff0000;
}
}