Skip to content

Commit

Permalink
Merge pull request #252 from betagouv/bugfix-largeur-carte-eligibilite
Browse files Browse the repository at this point in the history
Sur la page éligibilité, la largeur des cartes des deux parcours n'est pas la même
  • Loading branch information
morganmerzouk authored Oct 23, 2024
2 parents a28f9c6 + 55a37ee commit 161030a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions components/Eligibility.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,16 @@ export default function Eligibility({
css={`
display: flex;
flex-wrap: nowrap;
> div:nth-child(1),
> div:nth-child(3) {
width: 45%;
}
@media (max-width: 700px) {
flex-wrap: wrap;
flex-direction: column;
> div {
width: 100% !important;
}
}
justify-content: center;
`}
Expand Down

0 comments on commit 161030a

Please sign in to comment.