We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 305bfcc commit fcd7589Copy full SHA for fcd7589
gulpfile.js
@@ -380,7 +380,13 @@ function dist_src() {
380
381
function dist_node_modules_css() {
382
return gulp
383
- .src("./node_modules/**/*.min.css")
+ .src(
384
+ [
385
+ "./node_modules/**/*.min.css",
386
+ "./node_modules/**/*.woff2",
387
+ "./node_modules/**/*.ttf",
388
+ ],
389
+ )
390
.pipe(gulp.dest(`${DIST_DIR}node_modules`));
391
}
392
src/css/tabs/landing.less
@@ -6,7 +6,6 @@
6
min-height: 100%;
7
height: 100%;
8
overflow-y: auto;
9
- background-color: #2e2e2e;
10
11
.content_top {
12
height: 140px;
0 commit comments