From 8e0067c2761fffc6be41c4ebde75b238b9f385ae Mon Sep 17 00:00:00 2001 From: Chuck Dries Date: Mon, 20 Mar 2017 04:26:16 -0700 Subject: [PATCH] Don't compile SASS we don't need to --- css/style.css | 1 + gulpfile.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/css/style.css b/css/style.css index a170aa1..273c274 100644 --- a/css/style.css +++ b/css/style.css @@ -89,6 +89,7 @@ body { .slide div .project { transition-duration: .2s; width: 390px; + padding: 0 0 1em 0; border: 1px solid #aaa; border-radius: 5px; overflow: hidden; } diff --git a/gulpfile.js b/gulpfile.js index b6a6fd8..038bf95 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -12,7 +12,7 @@ gulp.task('default', function() { }) gulp.task('style', function() { // place code for your default task here - gulp.src('./sass/*.scss') + gulp.src('./sass/style.scss') .pipe(sass().on('error', sass.logError)) .pipe(gulp.dest('./css/')); });