mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-06-10 23:19:15 +08:00
49 lines
739 B
CSS
49 lines
739 B
CSS
@import './common/var.css';
|
|
|
|
.van-goods-action {
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
position: fixed;
|
|
|
|
&__big-btn {
|
|
flex: 1;
|
|
padding: 0;
|
|
|
|
@media(max-width: 321px) {
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
|
|
&__mini-btn {
|
|
color: $gray-darker;
|
|
display: flex;
|
|
height: 50px;
|
|
font-size: 10px;
|
|
min-width: 15%;
|
|
line-height: 1;
|
|
text-align: center;
|
|
background-color: $white;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
|
|
&::after {
|
|
border-width: 1px 0 0 1px;
|
|
}
|
|
|
|
&:first-child::after {
|
|
border-left-width: 0;
|
|
}
|
|
|
|
&:active {
|
|
background-color: $active-color;
|
|
}
|
|
|
|
&-icon {
|
|
font-size: 20px;
|
|
margin-bottom: 5px;
|
|
}
|
|
}
|
|
}
|