-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using with vue-loader #27
Comments
The issue I was having was getting the packaged bootstrap styles to show. I managed to get this to work by adding this code to the style section of my App.vue file (the first component). @import 'node_modules/vuestrap/bootstrap/bootstrap'; Is this the recommended way of doing this? |
As per the instructions, I started of adapting my project's 1 - Create a ``palette.scss` file with just variables definitions, such as : /* Primary*/
$primaryDark: #203559; // Cello
$primaryHighlight: #a6894c; // Driftwood 2 - I created an @import "./palette.scss";
// *** BOOTSTRAP ADJUSTMENTS ***
$brand-primary: $primaryDark !default; // Cello
$brand-success: $primaryHighlight !default; // Driftwood
// etc.
@import "../../node_modules/vuestrap/bootstrap/bootstrap.scss"; 3 - in my 4- if I need to use scss overrides in my components I import the pallette again in the <style> section, not the |
Thanks for the suggestions @tvld! :) |
My team is looking to implement this into our vue-loader based app and I'm having trouble getting it to work. Do you have any tips on how to get this working with vue-loader? :)
The text was updated successfully, but these errors were encountered: