|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
<template>
|
|
|
<LayoutContainer>
|
|
<LayoutContainer>
|
|
|
<div class="job-section">
|
|
<div class="job-section">
|
|
|
- <v-row class="mb-6">
|
|
|
|
|
|
|
+ <v-row class="mb-6 center-90">
|
|
|
<v-col class="d-flex align-items-center">
|
|
<v-col class="d-flex align-items-center">
|
|
|
<v-btn
|
|
<v-btn
|
|
|
to="/nous-rejoindre"
|
|
to="/nous-rejoindre"
|
|
@@ -30,9 +30,9 @@
|
|
|
description="Offre d'emploi"
|
|
description="Offre d'emploi"
|
|
|
/>
|
|
/>
|
|
|
|
|
|
|
|
- <LayoutUITitlePage>
|
|
|
|
|
|
|
+ <h3>
|
|
|
{{ job.title }}
|
|
{{ job.title }}
|
|
|
- </LayoutUITitlePage>
|
|
|
|
|
|
|
+ </h3>
|
|
|
|
|
|
|
|
<v-row class="details blue-content my-6">
|
|
<v-row class="details blue-content my-6">
|
|
|
<v-col cols="12" md="6">
|
|
<v-col cols="12" md="6">
|
|
@@ -45,7 +45,7 @@
|
|
|
|
|
|
|
|
<v-row>
|
|
<v-row>
|
|
|
<div>
|
|
<div>
|
|
|
- Location :
|
|
|
|
|
|
|
+ Localisation :
|
|
|
<b>{{ job.postalCode }} {{ job.city }}</b>
|
|
<b>{{ job.postalCode }} {{ job.city }}</b>
|
|
|
</div>
|
|
</div>
|
|
|
</v-row>
|
|
</v-row>
|
|
@@ -67,7 +67,7 @@
|
|
|
</v-col>
|
|
</v-col>
|
|
|
</v-row>
|
|
</v-row>
|
|
|
|
|
|
|
|
- <v-row>
|
|
|
|
|
|
|
+ <v-row class="center-90">
|
|
|
<p
|
|
<p
|
|
|
v-html="job.content"
|
|
v-html="job.content"
|
|
|
class="center-90 description mb-12"
|
|
class="center-90 description mb-12"
|
|
@@ -75,10 +75,7 @@
|
|
|
</v-row>
|
|
</v-row>
|
|
|
|
|
|
|
|
<v-row class="d-flex justify-center align-center">
|
|
<v-row class="d-flex justify-center align-center">
|
|
|
- <v-btn
|
|
|
|
|
- prepend-icon="fas fa-info"
|
|
|
|
|
- class="btn-apply mb-12"
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <v-btn class="btn-apply mb-12">
|
|
|
Je postule
|
|
Je postule
|
|
|
</v-btn>
|
|
</v-btn>
|
|
|
</v-row>
|
|
</v-row>
|
|
@@ -146,9 +143,17 @@ const formatDate = (date: string) => {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.job-section {
|
|
.job-section {
|
|
|
- margin: 32px 12%;
|
|
|
|
|
|
|
+ margin: 32px 0;
|
|
|
|
|
+
|
|
|
|
|
+ h3 {
|
|
|
|
|
+ font-size: 32px;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ text-transform: uppercase;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
.details {
|
|
.details {
|
|
|
|
|
+ padding: 0 20%;
|
|
|
background-color: var(--secondary-color);
|
|
background-color: var(--secondary-color);
|
|
|
color: var(--on-secondary-color);
|
|
color: var(--on-secondary-color);
|
|
|
height: 10rem;
|
|
height: 10rem;
|
|
@@ -176,11 +181,12 @@ const formatDate = (date: string) => {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.description {
|
|
.description {
|
|
|
- color: var(--primary-color);
|
|
|
|
|
|
|
+ color: var(--on-neutral-color);
|
|
|
text-align: justify;
|
|
text-align: justify;
|
|
|
- font-size: 1.875rem;
|
|
|
|
|
|
|
+ font-size: 21px;
|
|
|
font-weight: 500;
|
|
font-weight: 500;
|
|
|
line-height: 2.125rem;
|
|
line-height: 2.125rem;
|
|
|
|
|
+ padding: 12px 36px;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -192,7 +198,7 @@ const formatDate = (date: string) => {
|
|
|
|
|
|
|
|
.btn-apply {
|
|
.btn-apply {
|
|
|
background: var(--secondary-color);
|
|
background: var(--secondary-color);
|
|
|
- color: var(--neutral-color);
|
|
|
|
|
|
|
+ color: var(--on-secondary-color);
|
|
|
display: flex;
|
|
display: flex;
|
|
|
left: 0;
|
|
left: 0;
|
|
|
padding: 25px 28px;
|
|
padding: 25px 28px;
|