In the latest series, "Build Larabook From Scratch", Jeff includes Bootstrap then shows us how to automatically watch and compile SASS files...
I'd like to download Bootstrap source files in a local environment, write my own LESS with Bootstrap mixins, and then have that automatically compiled and saved to the public directory... How would I go about doing this?
I feel like this would be a better approach than chaining a bunch of bootstrap styles in the HTML...
I didn't realize there was a SASS version of Bootstrap. I ended up sticking with SASS, downloaded the sources off of GitHub, put them in /app/assets and then created my main.scss file.
I've never worked with LESS or SASS before... Is there a way to use Bootstrap as more of a reference to only pull styles I fetch via mixins? Would be nice and would reduce the bloatedness of it.
I see that in LESS, I could do @import (reference)... I can't find a similar option in SASS. :-/
I'm not sure if you're talking about full partials or just mixins, but still... you can take a look at http://sass-lang.com/guide and you'll see that both are possible and easy to do :)
Oh, right, got it. Unfortunately, I don't think there's an equivalent for that in SASS, but I haven't used it all that much lately so I might be missing something :)