- 更改页面背景渐变颜色 - 调整购买按钮背景渐变颜色 - 修改购物车图标背景渐变颜色 - 重构快速操作组件布局结构 - 更新快速操作图标尺寸和样式 - 移除快速操作标题和描述文字 - 简化快速操作组件渲染逻辑 - 添加图标颜色分类样式类
51 lines
719 B
SCSS
51 lines
719 B
SCSS
.quick-actions {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
padding: 24px 16px;
|
|
background: #ffffff;
|
|
|
|
&__item {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
&:active {
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
|
|
&__icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 8px;
|
|
|
|
&--orange {
|
|
background: #ff8c1a;
|
|
}
|
|
|
|
&--blue {
|
|
background: #3b82f6;
|
|
}
|
|
|
|
&--cyan {
|
|
background: #06b6d4;
|
|
}
|
|
|
|
&--red {
|
|
background: #ef4444;
|
|
}
|
|
}
|
|
|
|
&__label {
|
|
font-size: 13px;
|
|
color: #333333;
|
|
font-weight: 500;
|
|
}
|
|
}
|