mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-09-07 00:09:45 +08:00
* upgrade dependencies * 更改所有 saladcss 写法 * fix: 升级依赖导致的样式错误 * fix: build vant css * use es module when pack && webpack scope hoisting * fix: vue module version * delete unused npm script * fix: build:vant script not work * fix: webpack config format * fix: build minify vant.js * fix: captain ui relative link
10 lines
187 B
CSS
10 lines
187 B
CSS
.van-col {
|
|
float: left;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
@for $i from 1 to 24 {
|
|
.van-col-$i { width: calc($i * 100% / 24); }
|
|
.van-col-offset-$i { margin-left: calc($i * 100% / 24); }
|
|
}
|