소스 검색

style: disable z-index optimization

fix custom meta panel style, close #49
Gerald 9 년 전
부모
커밋
53d6089625
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      gulpfile.js

+ 3 - 1
gulpfile.js

@@ -94,7 +94,9 @@ gulp.task('copy-files', () => {
   const cssFilter = gulpFilter(['**/*.css'], {restore: true});
   return gulp.src(paths.copy)
   .pipe(cssFilter)
-  .pipe(cssnano())
+  .pipe(cssnano({
+    zindex: false,
+  }))
   .pipe(cssFilter.restore)
   .pipe(gulp.dest('dist/'));
 });