mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
38 lines
564 B
CSS
38 lines
564 B
CSS
@define-mixin button-wrap {
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
padding-right: 10px;
|
|
&:last-child {
|
|
padding-right: 0;
|
|
}
|
|
.z-button {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@component-namespace z {
|
|
@b button-group {
|
|
font-size: 0;
|
|
|
|
> .z-button {
|
|
margin-right: 10px;
|
|
&::last-child {
|
|
margin-right: 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%;
|
|
}
|
|
}
|