Files
cmgd-mini-app/uni_modules/nutui-uni/components/col/index.scss
2026-01-05 12:47:14 +08:00

26 lines
393 B
SCSS

.nut-col {
box-sizing: border-box;
float: left;
word-break: break-all;
&-gutter {
&:last-child {
padding-right: 0 !important;
}
&:first-child {
padding-left: 0 !important;
}
}
}
@for $i from 1 through 24 {
.nut-col-offset-#{$i} {
margin-left: calc((100 / 24) * #{$i} * 1%);
}
.nut-col-#{$i} {
width: calc((100 / 24) * #{$i} * 1%);
}
}