index.css 638 B

1234567891011121314151617181920212223
  1. @import '../common/index.css';
  2. .van-goods-action-icon {
  3. border: none !important;
  4. width: 50px !important;
  5. width: var(--goods-action-icon-height, 50px) !important;
  6. }
  7. .van-goods-action-icon__content {
  8. display: -webkit-flex;
  9. display: flex;
  10. -webkit-flex-direction: column;
  11. flex-direction: column;
  12. -webkit-justify-content: center;
  13. justify-content: center;
  14. height: 100%;
  15. line-height: 1;
  16. font-size: 10px;
  17. font-size: var(--goods-action-icon-font-size, 10px);
  18. color: #646566;
  19. color: var(--goods-action-icon-text-color, #646566);
  20. }
  21. .van-goods-action-icon__icon {
  22. margin-bottom: 4px;
  23. }