mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-26 19:36:36 +08:00
12 lines
216 B
CSS
12 lines
216 B
CSS
@import './common/var.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); }
|
|
}
|