Skip to content

Commit

Permalink
Fix sponsor bacground on landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
haslinghuis committed Jan 2, 2024
1 parent 305bfcc commit fcd7589
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 7 additions & 1 deletion gulpfile.js
Expand Up @@ -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`));
}

Expand Down
1 change: 0 additions & 1 deletion src/css/tabs/landing.less
Expand Up @@ -6,7 +6,6 @@
min-height: 100%;
height: 100%;
overflow-y: auto;
background-color: #2e2e2e;
}
.content_top {
height: 140px;
Expand Down

0 comments on commit fcd7589

Please sign in to comment.