index.less 599 B

123456789101112131415161718192021222324252627
  1. @import '../style/var';
  2. .van-goods-action-icon {
  3. display: flex;
  4. flex-direction: column;
  5. justify-content: center;
  6. min-width: @goods-action-icon-width;
  7. height: @goods-action-icon-height;
  8. color: @goods-action-icon-text-color;
  9. font-size: @goods-action-icon-font-size;
  10. line-height: 1;
  11. text-align: center;
  12. background-color: @white;
  13. cursor: pointer;
  14. &:active {
  15. background-color: @goods-action-icon-active-color;
  16. }
  17. &__icon {
  18. position: relative;
  19. width: 1em;
  20. margin: 0 auto 5px;
  21. color: @goods-action-icon-color;
  22. font-size: @goods-action-icon-size;
  23. }
  24. }