Minor fixes
This commit is contained in:
parent
f6d4639ca3
commit
d2c65f7931
@ -38,16 +38,16 @@
|
|||||||
"sass:process": "npm run sass:tokens && npm run sass:lint && sass src/scss/global.scss src/_includes/assets/css/global.css --style=compressed",
|
"sass:process": "npm run sass:tokens && npm run sass:lint && sass src/scss/global.scss src/_includes/assets/css/global.css --style=compressed",
|
||||||
"start": "concurrently \"npm run sass:process -- --watch\" \"npm run serve\"",
|
"start": "concurrently \"npm run sass:process -- --watch\" \"npm run serve\"",
|
||||||
"serve": "cross-env ELEVENTY_ENV=development npx eleventy --serve",
|
"serve": "cross-env ELEVENTY_ENV=development npx eleventy --serve",
|
||||||
"preprod": "cross-env ELEVENTY_ENV=preprod npm run sass:process && npx eleventy",
|
"prod": "cross-env ELEVENTY_ENV=prod npm run sass:process && npx eleventy",
|
||||||
"deploy-preprod": "npm run preprod && node deploy-preprod",
|
"deploy-preprod": "npm run prod && node deploy-preprod",
|
||||||
"prod": "cross-env ELEVENTY_ENV=prod npm run sass:process && npx eleventy"
|
"deploy-prod": "npm run prod && node deploy-prod"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://git.ouvaton.coop/astrolabe/SiteWebAstrolabe.git"
|
"url": "git+https://git.ouvaton.coop/astrolabe/SiteWebAstrolabe.git"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "Yves Gatesoupe",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://git.ouvaton.coop/astrolabe/SiteWebAstrolabe/issues"
|
"url": "https://git.ouvaton.coop/astrolabe/SiteWebAstrolabe/issues"
|
||||||
|
@ -5,10 +5,6 @@ const CACHE_KEYS = {
|
|||||||
|
|
||||||
// URLS that we don’t want to end up in the cache
|
// URLS that we don’t want to end up in the cache
|
||||||
const EXCLUDED_URLS = [
|
const EXCLUDED_URLS = [
|
||||||
'admin',
|
|
||||||
'.netlify',
|
|
||||||
'https://identity.netlify.com/v1/netlify-identity-widget.js',
|
|
||||||
'https://unpkg.com/netlify-cms@^2.9.3/dist/netlify-cms.js',
|
|
||||||
'/contact',
|
'/contact',
|
||||||
'/thank-you'
|
'/thank-you'
|
||||||
];
|
];
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="">
|
<div class="">
|
||||||
<h3>Crédits</h3>
|
<h3>Crédits</h3>
|
||||||
<p>Design et intégration : <a href="{{site.designerHandle}}" target="_blank">{{site.designerName}}</a></p>
|
<p>Design et intégration : <a class="footer-link" href="{{site.designerHandle}}" target="_blank">{{site.designerName}}</a></p>
|
||||||
<p>Illustrations : {{site.illustrators}}
|
<p>Illustrations : {{site.illustrators}}
|
||||||
</div>
|
</div>
|
||||||
<div class="">
|
<div class="">
|
||||||
|
1
src/images/crew-join.svg
Normal file
1
src/images/crew-join.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 18 KiB |
@ -54,6 +54,7 @@ a:not([class]):visited {
|
|||||||
font-size: 1.125rem;
|
font-size: 1.125rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
margin-top: 2rem;
|
margin-top: 2rem;
|
||||||
|
color: var(--color-dark);
|
||||||
|
|
||||||
&:visited {
|
&:visited {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
|
@ -28,9 +28,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
.footer-link {
|
||||||
color: currentColor;
|
color: var(--color-white);
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user