rails 3.2, bootstrap 3.
I use bootstrap sass gem and I can't do it work. I have this error
Undefined mixin 'make-lg-column'.
in this file app/assets/stylesheets/exam.css.scss
...
.button-left{
@include make-lg-column(4);
display:inline;
padding-top: 5px;
}
...
this is my application.css.scss
@import "bootstrap";
@import "exam";
if I add these lines to exam.css.scss it works. But I don't want do it
@import "bootstrap/variables";
@import "bootstrap/mixins";
Please any advice is welcome, thanks for your help.