File tree 2 files changed +29
-0
lines changed
2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 76
76
77
77
}
78
78
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
+
79
105
vmd-appointment-card {
80
106
display : block ;
81
107
opacity : 1 ;
Original file line number Diff line number Diff line change @@ -244,6 +244,9 @@ export abstract class AbstractVmdRdvView extends LitElement {
244
244
/> ` ;
245
245
} ) }
246
246
</ 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 >
247
250
` }
248
251
` ;
249
252
}
You can’t perform that action at this time.
0 commit comments