Skip to content

Commit 1b5dbac

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

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

gulpfile.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ function dist_src() {
381381
function dist_node_modules_css() {
382382
return gulp
383383
.src("./node_modules/**/*.min.css")
384-
.pipe(gulp.dest(`${DIST_DIR}node_modules`));
384+
.pipe(gulp.dest(`${DIST_DIR}node_modules/`));
385385
}
386386

387387
function dist_ol_css() {
@@ -425,9 +425,12 @@ function dist_rollup() {
425425
const vue = require('rollup-plugin-vue');
426426
const rollupReplace = require('@rollup/plugin-replace');
427427

428+
const isAndroid = getPlatforms().includes('android');
429+
const strictDeprecations = isAndroid ? false : true;
430+
428431
return rollup
429432
.rollup({
430-
strictDeprecations: true,
433+
strictDeprecations: strictDeprecations,
431434
input: {
432435
// For any new file migrated to modules add the output path
433436
// in dist on the left, on the right it's input file path.

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)