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",
|
||||
"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"
|
||||
|
@ -5,10 +5,6 @@ const CACHE_KEYS = {
|
||||
|
||||
// URLS that we don’t 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'
|
||||
];
|
||||
|
@ -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
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-weight: 700;
|
||||
margin-top: 2rem;
|
||||
color: var(--color-dark);
|
||||
|
||||
&:visited {
|
||||
color: inherit;
|
||||
|
@ -28,9 +28,11 @@
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
color: currentColor;
|
||||
.footer-link {
|
||||
color: var(--color-white);
|
||||
}
|
||||
|
||||
a {
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user