change your gulpfile.js
var paths={
'bootstrap': './bower_components/bootstrap-sass/assets/'
}
elixir(function(mix){
mix.sass("app.scss", 'public/css/', {includePaths: [paths.bootstrap + 'stylesheets/']});
and your app.scss to
@import "_bootstrap"; /*store partial in /resources/assest/sass/*/
@import "bootstrap";
first import the partial to override the default bootstrap variables
hope this helps you
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community