map responsive fond popup @ media

This commit is contained in:
ouidade 2024-10-08 14:57:04 +02:00
parent 452d640680
commit 5f70faf3d4
2 changed files with 16 additions and 8 deletions

View File

@ -56,11 +56,14 @@
} }
#popup-content{ #popup-content{
width: 250px; width: 300px;
background-color: white;
border-radius: 5px;
padding: 0.5rem;
p{ p{
font-size: 0.7rem; font-size: 0.7rem;
} }
@media (max-width : 810px) {
width: 250px;
background-color: white;
border-radius: 5px;
padding: 0.5rem;
}
} }

View File

@ -3117,11 +3117,16 @@ header #block-quartiers-de-demain-logoquartiersdedemain .field_field_logo .qdd-h
} }
#popup-content { #popup-content {
width: 250px; width: 300px;
background-color: white;
border-radius: 5px;
padding: 0.5rem;
} }
#popup-content p { #popup-content p {
font-size: 0.7rem; font-size: 0.7rem;
} }
@media (max-width: 810px) {
#popup-content {
width: 250px;
background-color: white;
border-radius: 5px;
padding: 0.5rem;
}
}