diff --git a/gulpfile.js b/gulpfile.js index e5b9c312afd..2a243ee80b4 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -380,7 +380,13 @@ function dist_src() { function dist_node_modules_css() { return gulp - .src("./node_modules/**/*.min.css") + .src( + [ + "./node_modules/**/*.min.css", + "./node_modules/**/*.woff2", + "./node_modules/**/*.ttf", + ], + ) .pipe(gulp.dest(`${DIST_DIR}node_modules`)); } diff --git a/src/css/tabs/landing.less b/src/css/tabs/landing.less index 77569eea94d..a665aeb7aa3 100644 --- a/src/css/tabs/landing.less +++ b/src/css/tabs/landing.less @@ -6,7 +6,6 @@ min-height: 100%; height: 100%; overflow-y: auto; - background-color: #2e2e2e; } .content_top { height: 140px;