Reputation: 57
How do i use offsets within my own sass file using bootstrap v4?
I was using: @extend .col-sm-offset-2;
After i updated bootstrap v4 from the git, it's not working anymore.
Upvotes: 1
Views: 239
Reputation: 2096
according to the documentation, it would work like this :
@include make-col-offset(2)
I suppose it will be sm if the column is small already
Upvotes: 1