attentionBtn.wxss 488 B

1234567891011121314151617181920212223242526272829
  1. /* components/attentionBtn/attentionBtn.wxss */
  2. .like-wrap {
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. background: rgba(59, 122, 255, 1);
  7. padding: 4rpx 10rpx;
  8. border-radius: 8rpx;
  9. }
  10. .normal {
  11. background: #efefef;
  12. }
  13. .like-wrap .like-icon {
  14. width: 28rpx;
  15. height: 28rpx;
  16. }
  17. .like-wrap .like {
  18. font-size: 26rpx;
  19. font-family: PingFangSC-Medium, PingFang SC;
  20. font-weight: 500;
  21. color: rgba(255, 255, 255, 1);
  22. }
  23. .normal .like {
  24. color: #666666;
  25. }