26 lines
393 B
SCSS
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%);
|
|
}
|
|
}
|