css - How to update SASS styles of Foundation 5? -
I'm new to the foundation framework, so this is an easy newbie question.
In my project, I only have some CSS files in a SAS directory:
_foundation.scss (5000+ lines of CSS file) _normalize.scss (normalized css File) _setting.scss (volume of a large commented CCS variable) app.scss (collecting other SCSS files) I am not disappointed that the more CCS stands for different modules No files.
$ topbar-bg-color: rgba (0, 0,0,0,0); Should I include or update this value? I successfully tried to update without setting.
You should use the _settings.scss file. Create a app.scss file in the Scss directory and enter it in: @import "normalize"; // Simply general generalization @ import "foundation / settings"; // Changed settings (will affect Foundation) @ import "foundation"; // and inside the Foundation frameworks / your awesome custom styles go here and then app.scss compile - all this.
Comments
Post a Comment