26 lines
452 B
SCSS
26 lines
452 B
SCSS
.carhop-localisation-map {
|
|
.map-container {
|
|
a:after {
|
|
content: none !important;
|
|
}
|
|
margin: 0 auto;
|
|
max-width: 1200px;
|
|
width: 100%;
|
|
height: 500px;
|
|
background-color: var(--wp--preset--color--primary);
|
|
overflow: hidden;
|
|
|
|
// Loading state
|
|
&:not([data-initialized="true"]) {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
|
|
&::before {
|
|
content: "Chargement de la carte...";
|
|
}
|
|
}
|
|
}
|
|
}
|