Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
4 changed files with 842 additions and 959 deletions
Showing only changes of commit 9c8df03c36 - Show all commits

File diff suppressed because it is too large Load Diff

View File

@ -296,7 +296,7 @@ a:hover, a:active {
display:inline-block;
text-align:center;
width:220px;
height:319px;
height:311px;
margin: var(--normal-padding);
}
@ -427,8 +427,7 @@ a:hover, a:active {
.manga .media {
border:1px solid #ddd;
width:200px;
height:290px;
height:310px;
margin:0.25em;
}

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,17 @@
{
"scripts": {
"watch": "npm-run-all --parallel watch:base watch:marx",
"watch:base": "myth -w css/base.myth.css css/base.css",
"watch:marx": "myth -w css/marx.myth.css css/marx.css"
},
"devDependencies": {
"myth": "^1.5.0",
"npm-run-all": "^1.7.0"
}
}
"scripts": {
"build": "npm-run-all --parallel build:base build:marx",
"build:base": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -o css/base.css css/base.myth.css",
"build:marx": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -o css/marx.css css/marx.myth.css",
"watch": "npm-run-all --parallel watch:base watch:marx",
"watch:base": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -w -o css/base.css css/base.myth.css",
"watch:marx": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -w -o css/marx.css css/marx.myth.css"
},
"devDependencies": {
"autoprefixer": "^6.6.1",
"npm-run-all": "^4.0.0",
"postcss-cachify": "^1.3.1",
"postcss-cli": "^2.6.0",
"postcss-cssnext": "^2.9.0"
}
}