Browse Source

修改 source-unverified 状态标签颜色为橙色

- 将 .status-tag.source-unverified 样式从蓝色系改为橙色系
- 背景色: rgba(255, 122, 69, 0.15)
- 文字颜色: #ff7a45
- 边框颜色: rgba(255, 122, 69, 0.5)
pull/3/head
徐飞洋 2 months ago
parent
commit
706ad3d368
  1. 6
      pages/index/index.wxss

6
pages/index/index.wxss

@ -862,9 +862,9 @@ wx-button:not([size=mini]) {
}
.status-tag.source-unverified {
background: rgba(140, 140, 140, 0.15);
color: #595959;
border: 1rpx solid rgba(140, 140, 140, 0.5);
background: rgba(255, 122, 69, 0.15);
color: #ff7a45;
border: 1rpx solid rgba(255, 122, 69, 0.5);
}
.status-tag.item-count {

Loading…
Cancel
Save