diff --git a/web/themes/custom/quartiers_de_demain/dist/assets/css/bundle.css b/web/themes/custom/quartiers_de_demain/dist/assets/css/bundle.css index 64c6953..3c314d6 100644 --- a/web/themes/custom/quartiers_de_demain/dist/assets/css/bundle.css +++ b/web/themes/custom/quartiers_de_demain/dist/assets/css/bundle.css @@ -2773,6 +2773,12 @@ body { #pour_candidater #sites-map-container { width: 50%; } +@media (max-width: 500px) { + #pour_candidater #sites-map-container { + height: fit-content; + width: 90%; + } +} #pour_candidater .field_field_title { color: rgb(7, 50, 194); font-size: 1.2rem; diff --git a/web/themes/custom/quartiers_de_demain/src/assets/scss/pages/pour_candidater.scss b/web/themes/custom/quartiers_de_demain/src/assets/scss/pages/pour_candidater.scss index 1baf6da..c7f1c1b 100644 --- a/web/themes/custom/quartiers_de_demain/src/assets/scss/pages/pour_candidater.scss +++ b/web/themes/custom/quartiers_de_demain/src/assets/scss/pages/pour_candidater.scss @@ -5,6 +5,11 @@ #sites-map-container{ width: 50% ; + @media(max-width: 500px){ + height: fit-content; + width: 90%; + } + } .field_field_title{ color: $blue_QDD;