I have an ember-cli project in which I have included the Foundation css framework. I should mention that I am completely new to using SCSS so please bear with me!
My app/styles/app.scss
file looks like:
@import 'vendor/foundation/scss/normalize';
@import 'vendor/foundation/scss/foundation';
Now I want to override some of the styles; my question is where and how do I do this? It does not make sense to alter the code in bower_components/foundation
but I am not clear on how else to do it.
What is the correct way to do this?
Many thanks,
Michael