Bootstrap sass and customized variables.scss
How do you handle your modifications in the variables.scss? I mean simply pulling in Bootstrap and then your variables don't really have effect since it's ignored, pulling in your custom variables before Bootstrap has neither effect as it's overwritten. A solution is to delete the variables and pull mine in before Bootstrap as it can't be overwritten then, but I don't like this solution as I have to do a lot of manual customized setup on every install.
Variable loading is in a different order in LESS vs. SCSS. If you want to override any bootstrap variables, they should be declared before importing bootstrap.scss. LESS is the opposite order of loading.
Please or to participate in this conversation.