mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
33 lines
614 B
Plaintext
33 lines
614 B
Plaintext
@import '../style/var';
|
|
|
|
.van-goods-action-icon {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
min-width: @goods-action-icon-width;
|
|
height: @goods-action-icon-height;
|
|
color: @goods-action-icon-color;
|
|
font-size: @goods-action-icon-font-size;
|
|
line-height: 1;
|
|
text-align: center;
|
|
background-color: @white;
|
|
|
|
&:not(:first-child)::after {
|
|
border-left-width: 1px;
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
|
|
&:active {
|
|
background-color: @goods-action-icon-active-color;
|
|
}
|
|
|
|
&__icon {
|
|
width: 1em;
|
|
margin: 0 auto 5px;
|
|
font-size: @goods-action-icon-size;
|
|
}
|
|
}
|