summaryrefslogtreecommitdiff
path: root/gulpfile.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2021-03-05 13:51:22 +0900
committersyuilo <syuilotan@yahoo.co.jp>2021-03-05 13:51:22 +0900
commit54bcb80b447805f673e875ee98fd849879b73a4f (patch)
treedf2e027f773a0b6b8f937a82d7868fdf71bbfc09 /gulpfile.ts
parentImprove reaction picker performance (diff)
downloadmisskey-54bcb80b447805f673e875ee98fd849879b73a4f.tar.gz
misskey-54bcb80b447805f673e875ee98fd849879b73a4f.tar.bz2
misskey-54bcb80b447805f673e875ee98fd849879b73a4f.zip
Splash screen :sparkles:
Diffstat (limited to 'gulpfile.ts')
-rw-r--r--gulpfile.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/gulpfile.ts b/gulpfile.ts
index b394e4f44c..7d20aba4e7 100644
--- a/gulpfile.ts
+++ b/gulpfile.ts
@@ -56,7 +56,9 @@ gulp.task('build:client:script', () => {
gulp.task('build:client:style', () => {
return gulp.src(['./src/server/web/style.css', './src/server/web/bios.css', './src/server/web/cli.css'])
- .pipe(cssnano())
+ .pipe(cssnano({
+ zindex: false
+ }))
.pipe(gulp.dest('./built/server/web/'));
});