Skip to content

Commit

Permalink
#99 Display a fixed footer inviting to respect eligibility criteria
Browse files Browse the repository at this point in the history
  • Loading branch information
nhumblot committed Apr 29, 2021
1 parent 964091c commit 50403f0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/views/vmd-rdv.view.scss
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,21 @@

}

.eligibility-criteria {
position: fixed;
bottom: 0;
left: 0;
color: $red;
width: 100%;
background-color: $pink-100;
text-align: center;
vertical-align: center;

p {
margin: .5em;
}
}

vmd-appointment-card {
display: block;
opacity: 1;
Expand Down
3 changes: 3 additions & 0 deletions src/views/vmd-rdv.view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,9 @@ export abstract class AbstractVmdRdvView extends LitElement {
/>`;
})}
</div>
<div class="eligibility-criteria">
<p>Les critères d'éligibilité sont vérifiés lors de la prise de rendez-vous</p>
</div>
`}
`;
}
Expand Down

0 comments on commit 50403f0

Please sign in to comment.