corrections page contacts
This commit is contained in:
parent
42fb439e3d
commit
f2d48ab583
|
@ -70,7 +70,7 @@ export const useContentStore = defineStore('content', {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (this.contentType !== 'gouvernance' && this.contentType !== 'partenaire') {
|
if (this.contentType !== 'gouvernance' && this.contentType !== 'partenaire') {
|
||||||
// pageTitle
|
// pageTitle
|
||||||
for (let tag of rawContent.attributes.metatag) {
|
for (let tag of rawContent.attributes.metatag) {
|
||||||
if (tag.tag === "meta") {
|
if (tag.tag === "meta") {
|
||||||
|
@ -177,6 +177,7 @@ export const useContentStore = defineStore('content', {
|
||||||
alt: partie.relationships.field_diaporama.data[index].meta.alt,
|
alt: partie.relationships.field_diaporama.data[index].meta.alt,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'entretien':
|
case 'entretien':
|
||||||
|
@ -235,7 +236,7 @@ export const useContentStore = defineStore('content', {
|
||||||
`${introContent.attributes.field_titre} ${introContent.attributes.metatag.find(tag => tag.tag === "meta")?.attributes.content}`;
|
`${introContent.attributes.field_titre} ${introContent.attributes.metatag.find(tag => tag.tag === "meta")?.attributes.content}`;
|
||||||
|
|
||||||
this.content.contentTitle = introContent.attributes.field_titre;
|
this.content.contentTitle = introContent.attributes.field_titre;
|
||||||
this.content.intro = introContent.attributes.field_intro.value;
|
this.content.intro = introContent.attributes.field_intro?.value;
|
||||||
|
|
||||||
const multiItemPageArray = [];
|
const multiItemPageArray = [];
|
||||||
|
|
||||||
|
|
|
@ -1105,26 +1105,29 @@ body{
|
||||||
> #partenaires {
|
> #partenaires {
|
||||||
margin-top: 3vh;
|
margin-top: 3vh;
|
||||||
> div.intro {
|
> div.intro {
|
||||||
margin-bottom: 6vh;
|
margin-bottom: 4vh;
|
||||||
@media screen and (min-width: $desktop-min-width) {
|
@media screen and (min-width: $desktop-min-width) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
> div.equipe-item {
|
> div.equipe-item {
|
||||||
@media screen and (min-width: $desktop-min-width) {
|
@media screen and (min-width: $desktop-min-width) {
|
||||||
margin-bottom: 7vh;
|
margin-bottom: 5vh;
|
||||||
}
|
}
|
||||||
> .partie-title {
|
> .partie-title {
|
||||||
margin-bottom: 3vh;
|
margin-bottom: 1.5vh;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
> div.equipe-item > div.personne,
|
> div.equipe-item > div.personne,
|
||||||
> div.partenaire {
|
> div.partenaire {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 0.4fr 1fr;
|
grid-template-columns: 0.3fr 1fr;
|
||||||
column-gap: 3rem;
|
column-gap: 2rem;
|
||||||
grid-template-rows: auto;
|
grid-template-rows: auto;
|
||||||
justify-items: start;
|
justify-items: start;
|
||||||
margin-bottom: 6vh;
|
margin-bottom: 3vh;
|
||||||
|
@media screen and (min-width: $desktop-min-width) {
|
||||||
|
grid-template-columns: 0.15fr 1fr;
|
||||||
|
}
|
||||||
> figure {
|
> figure {
|
||||||
grid-column: 1;
|
grid-column: 1;
|
||||||
grid-row: 1 / span 2;
|
grid-row: 1 / span 2;
|
||||||
|
|
Loading…
Reference in New Issue