Skip to content

Commit ff1fcd9

Browse files
author
Juuso Backman
committed
Merge pull request #195 from hannu/fix-ff-fonts
Fix: Styles are no longer added twice in the demo project. Fixes Firefox icon font problem
2 parents fe22333 + 818035a commit ff1fcd9

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ gulp.task('bower', function() {
9898
});
9999

100100
gulp.task('sass', function() {
101-
return gulp.src('lib/app/sass/**/*.scss')
101+
return gulp.src('lib/app/sass/app.scss')
102102
.pipe(plumber())
103103
.pipe(sass({
104104
// Include bourbon & neat

lib/app/styleguide_config.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
{
22
"title": "SC5 Styleguide",
33
"overviewPath": "overview.md",
4-
"styleVariables": "sass/_styleguide_variables.scss"
4+
"styleVariables": "sass/_styleguide_variables.scss",
5+
"sass": {
6+
"src": "lib/app/sass/app.scss",
7+
"includePaths": [
8+
"node_modules/node-bourbon/assets/stylesheets",
9+
"node_modules/node-neat/assets/stylesheets"
10+
]
11+
}
512
}

0 commit comments

Comments
 (0)