Skip to content

Commit fcd7589

Browse files
committed
Fix sponsor bacground on landing page
1 parent 305bfcc commit fcd7589

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

gulpfile.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,13 @@ function dist_src() {
380380

381381
function dist_node_modules_css() {
382382
return gulp
383-
.src("./node_modules/**/*.min.css")
383+
.src(
384+
[
385+
"./node_modules/**/*.min.css",
386+
"./node_modules/**/*.woff2",
387+
"./node_modules/**/*.ttf",
388+
],
389+
)
384390
.pipe(gulp.dest(`${DIST_DIR}node_modules`));
385391
}
386392

src/css/tabs/landing.less

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
min-height: 100%;
77
height: 100%;
88
overflow-y: auto;
9-
background-color: #2e2e2e;
109
}
1110
.content_top {
1211
height: 140px;

0 commit comments

Comments
 (0)