feat: add quick actions bar styles

This commit is contained in:
Your Name 2026-04-01 11:35:25 +08:00
parent 707c585aa4
commit 37e4bb5dc7

View File

@ -1619,6 +1619,38 @@ onLoad(async () => {
padding: 0 20rpx;
}
//
.quick-actions-bar {
display: flex;
flex-wrap: wrap;
gap: 16rpx;
padding: 16rpx 0;
}
.quick-action-btn {
height: 64rpx;
padding: 0 24rpx;
background-color: #ffffff;
border: 1px solid #e5e5e5;
border-radius: 12rpx;
font-size: 26rpx;
color: #333333;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
white-space: nowrap;
&:active {
transform: scale(0.98);
background-color: #f8f8f8;
}
text {
display: block;
}
}
.image-preview-list {
display: flex;
flex-wrap: wrap;