Reputation: 9411
I want to do this:
@include span-columns(4 of 12, block-collapse);
...but I want a 1 pixel margin on the right side of column 1 and 2, how do I do that?
Upvotes: 0
Views: 45
Reputation: 440
Unfortunately there isnt really a good way to do that. However you do have a couple of options:
calc()
and add that to the scss after the mixinexample
.card {
@include span-columns(4 of 12, block-collapse);
margin-left: calc(??% + 1px)
}
Upvotes: 1