mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-29 12:56:34 +08:00
34 lines
490 B
CSS
34 lines
490 B
CSS
@define-mixin button-wrap {
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
padding-right: 10px;
|
|
vertical-align: middle;
|
|
&:last-child {
|
|
padding-right: 0;
|
|
}
|
|
.zan-button {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@component-namespace zan {
|
|
@b button-group {
|
|
font-size: 0;
|
|
|
|
|
|
}
|
|
@b button-1 {
|
|
@mixin button-wrap;
|
|
padding-right: 0;
|
|
width: 100%;
|
|
}
|
|
@b button-2 {
|
|
@mixin button-wrap;
|
|
width: 50%;
|
|
}
|
|
@b button-3 {
|
|
@mixin button-wrap;
|
|
width: 33.33%;
|
|
}
|
|
}
|