Skip to content

Commit 23278fa

Browse files
committed
Add custom theme
1 parent ec77b3b commit 23278fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+7908
-0
lines changed

Gulpfile.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
const gulp = require('gulp');
2+
const sass = require('gulp-sass');
3+
4+
gulp.task('sass', () => {
5+
return gulp.src('./sass/*.scss')
6+
.pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError))
7+
.pipe(gulp.dest('./theme/static/css'));
8+
});
9+
10+
gulp.task('default', ['sass'], () => {
11+
return gulp.watch('./sass/**/*.scss', ['sass']);
12+
});

build/docker-entrypoint.sh

Whitespace-only changes.

0 commit comments

Comments
 (0)