I'm new to the Foundation framework, so that is an easy newbie question.
In my project, I only have a couple of scss files in a sass directory:
_foundation.scss (CSS file of 5000+ lines)
_normalize.scss (normalizing CSS file)
_setting.scss (A large amount of commented SCSS variables)
app.scss (Gathering the other scss files)
I'm little disappointed not to have more scss files standing for the different modules.
To begin, I would like to update one style value, for instance the topbar background-color:
$topbar-bg-color: rgba(0,0,0,0);
Where should I insert or update this value ? I tried to update the setting.scss, without success.