修改privacy页面和一个英雄的大图

This commit is contained in:
cebgcontract 2022-09-29 16:44:35 +08:00
parent c707fc1313
commit ca7fa16477
10 changed files with 50 additions and 32 deletions

View File

@ -7,7 +7,7 @@
"desktop": "webpack --config ./webpack.desktop.js", "desktop": "webpack --config ./webpack.desktop.js",
"mobile": "webpack --config ./webpack.mobile.js", "mobile": "webpack --config ./webpack.mobile.js",
"deploy:prod": "rm -f ./dist/.DS_Store && aws s3 sync ./dist s3://cebg.games.new --acl public-read --exclude \"pubgv4/*\" --exclude \"release/*\"", "deploy:prod": "rm -f ./dist/.DS_Store && aws s3 sync ./dist s3://cebg.games.new --acl public-read --exclude \"pubgv4/*\" --exclude \"release/*\"",
"refresh:prod": "aws cloudfront create-invalidation --distribution-id EE4HC9OXEQC7Y --paths \"/*\"" "refresh:prod": "aws cloudfront create-invalidation --distribution-id E34PEY4AGTMS0Y --paths \"/*\""
}, },
"author": "", "author": "",
"license": "ISC", "license": "ISC",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

File diff suppressed because one or more lines are too long

View File

@ -20,16 +20,16 @@
/> />
<style> <style>
h1 { h1 {
font-size: 60px; font-size: 60px!important;
margin-bottom: 60px; margin-bottom: 60px!important;
} }
.team-header { .team-header {
background: white; background: white!important;
height: auto; height: auto!important;
padding-bottom: 90px; padding-bottom: 90px!important;
} }
.team-item p { .team-item p {
height: unset; height: unset!important;
} }
</style> </style>
</head> </head>

View File

@ -20,16 +20,16 @@
/> />
<style> <style>
h1 { h1 {
font-size: 60px; font-size: 60px!important;
margin-bottom: 60px; margin-bottom: 60px!important;
} }
.team-header { .team-header {
background: white; background: white!important;
height: auto; height: auto!important;
padding-bottom: 90px; padding-bottom: 90px!important;
} }
.team-item p { .team-item p {
height: unset; height: unset!important;
} }
</style> </style>
</head> </head>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@ -21,19 +21,19 @@
<style> <style>
h1 { h1 {
font-size: 20px; font-size: 20px!important;
margin-bottom: 30px; margin-bottom: 30px!important;
} }
.team-header { .team-header {
background: white; background: white!important;
height: auto; height: auto!important;
padding-bottom: 90px; padding-bottom: 90px!important;
} }
.team-item p { .team-item p {
height: unset; height: unset!important;
} }
.team-item p::after { .team-item p::after {
background: unset; background: unset!important;
} }
</style> </style>
</head> </head>

View File

@ -20,19 +20,19 @@
<title>Terms | CEBG: CRYPTO ELITES BATTLEGROUNDS</title> <title>Terms | CEBG: CRYPTO ELITES BATTLEGROUNDS</title>
<style> <style>
h1 { h1 {
font-size: 20px; font-size: 20px!important;
margin-bottom: 30px; margin-bottom: 30px!important;
} }
.team-header { .team-header {
background: white; background: white!important;
height: auto; height: auto!important;
padding-bottom: 90px; padding-bottom: 90px!important;
} }
.team-item p { .team-item p {
height: unset; height: unset!important;
} }
.team-item p::after { .team-item p::after {
background: unset; background: unset!important;
} }
</style> </style>
</head> </head>

View File

@ -46,7 +46,16 @@ module.exports = {
}, },
}, },
{ {
test: /\.(woff|ttf|svg|eot|ico)$/, test: /\.ico$/i,
dependency: { not: ['url'] },
loader: 'url-loader',
options: {
limit: 1,
name: '[name].[hash:5].[ext]',
},
},
{
test: /\.(woff|ttf|svg|eot)$/,
use: ['url-loader'], use: ['url-loader'],
}, },
{ {

View File

@ -47,7 +47,16 @@ module.exports = {
}, },
}, },
{ {
test: /\.(woff|ttf|svg|eot|ico)$/, test: /\.ico$/i,
dependency: { not: ['url'] },
loader: 'url-loader',
options: {
limit: 1,
name: '[name].[hash:5].[ext]',
},
},
{
test: /\.(woff|ttf|svg|eot)$/,
use: ['url-loader'], use: ['url-loader'],
}, },
{ {