When I'm trying to deploy with capistrano or run rake assets:precompile I get the error
Sass::SyntaxError: Undefined mixin 'make-container'.
(in /Users/Andrew/Sites/designvideo/app/assets/stylesheets/base/global.scss:36)
Here is the global.scss line 36
.container-fluid {
max-width: 95em;
@include make-container();
padding-left: 8%;
padding-right: 8%;
}
and application.scss
@import "base/variables";
@import "bootstrap";
@import "base/widgets.scss";
@import "base/global.scss";
@import "font-awesome-sprockets";
@import "font-awesome";
@import "select2";
@import "select2-bootstrap";
@import "styles/authors.scss";
@import "styles/conferences.scss";
...
Actually in development environment everything looks great. Error gets just when I'm deploying.
What could be wrong with mixins there?
When I'm trying to deploy with capistrano or run
rake assets:precompileI get the errorHere is the global.scss line 36
and
application.scssActually in development environment everything looks great. Error gets just when I'm deploying.
What could be wrong with mixins there?