1234567891011121314151617181920212223 |
- @import '../common/index.css';
- .van-goods-action-icon {
- border: none !important;
- width: 50px !important;
- width: var(--goods-action-icon-height, 50px) !important;
- }
- .van-goods-action-icon__content {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-justify-content: center;
- justify-content: center;
- height: 100%;
- line-height: 1;
- font-size: 10px;
- font-size: var(--goods-action-icon-font-size, 10px);
- color: #646566;
- color: var(--goods-action-icon-text-color, #646566);
- }
- .van-goods-action-icon__icon {
- margin-bottom: 4px;
- }
|