e-retailer
e-retailer

Reputation: 57

Bootstrap v4 offsets within sass/scss

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

Answers (1)

Paul Lemarchand
Paul Lemarchand

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

Related Questions