Minor fixes

This commit is contained in:
Yves Gatesoupe 2020-07-16 18:07:36 +02:00
parent f6d4639ca3
commit d2c65f7931
6 changed files with 11 additions and 11 deletions

View File

@ -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",
"start": "concurrently \"npm run sass:process -- --watch\" \"npm run serve\"",
"serve": "cross-env ELEVENTY_ENV=development npx eleventy --serve",
"preprod": "cross-env ELEVENTY_ENV=preprod npm run sass:process && npx eleventy",
"deploy-preprod": "npm run preprod && node deploy-preprod",
"prod": "cross-env ELEVENTY_ENV=prod npm run sass:process && npx eleventy"
"prod": "cross-env ELEVENTY_ENV=prod npm run sass:process && npx eleventy",
"deploy-preprod": "npm run prod && node deploy-preprod",
"deploy-prod": "npm run prod && node deploy-prod"
},
"repository": {
"type": "git",
"url": "git+https://git.ouvaton.coop/astrolabe/SiteWebAstrolabe.git"
},
"keywords": [],
"author": "",
"author": "Yves Gatesoupe",
"license": "MIT",
"bugs": {
"url": "https://git.ouvaton.coop/astrolabe/SiteWebAstrolabe/issues"

View File

@ -5,10 +5,6 @@ const CACHE_KEYS = {
// URLS that we dont want to end up in the cache
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',
'/thank-you'
];

View File

@ -7,7 +7,7 @@
</div>
<div class="">
<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}}
</div>
<div class="">

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

View File

@ -54,6 +54,7 @@ a:not([class]):visited {
font-size: 1.125rem;
font-weight: 700;
margin-top: 2rem;
color: var(--color-dark);
&:visited {
color: inherit;

View File

@ -28,9 +28,11 @@
}
}
a {
color: currentColor;
.footer-link {
color: var(--color-white);
}
a {
&:hover {
text-decoration: none;
}