Skip to content

Commit dbf7e42

Browse files
authored
Merge pull request #109 from nhumblot/99-module-eligibilite
#99 Add vaccination eligibility government link
2 parents 1d30376 + fd16462 commit dbf7e42

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

src/views/vmd-rdv.view.scss

+26
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,32 @@
7676

7777
}
7878

79+
.eligibility-criteria {
80+
position: fixed;
81+
bottom: 0;
82+
left: 0;
83+
color: $red;
84+
width: 100%;
85+
background-color: $pink-100;
86+
text-align: center;
87+
vertical-align: center;
88+
89+
p {
90+
margin: .5em;
91+
}
92+
}
93+
94+
.fade-in-then-fade-out {
95+
animation-name: fade-in-then-fade-out;
96+
animation-duration: 10s;
97+
animation-fill-mode: forwards;
98+
}
99+
100+
@keyframes fade-in-then-fade-out {
101+
0%, 100% {opacity: 0}
102+
10%, 90% {opacity: 1}
103+
}
104+
79105
vmd-appointment-card {
80106
display: block;
81107
opacity: 1;

src/views/vmd-rdv.view.ts

+3
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,9 @@ export abstract class AbstractVmdRdvView extends LitElement {
244244
/>`;
245245
})}
246246
</div>
247+
<div class="eligibility-criteria fade-in-then-fade-out">
248+
<p>Les critères d'éligibilité sont vérifiés lors de la prise de rendez-vous</p>
249+
</div>
247250
`}
248251
`;
249252
}

0 commit comments

Comments
 (0)