修改privacy页面和一个英雄的大图
This commit is contained in:
parent
c707fc1313
commit
ca7fa16477
@ -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
@ -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>
|
||||||
|
@ -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 |
@ -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>
|
||||||
|
@ -20,19 +20,19 @@
|
|||||||
<title>Terms | CEBG: CRYPTO ELITE‘S BATTLEGROUNDS</title>
|
<title>Terms | CEBG: CRYPTO ELITE‘S 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>
|
||||||
|
@ -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'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -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'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user