carhop__plugins__PROD-DEV/plugins/carhop-blocks/src/localisation-map/style.scss
Antoine M 5dc6ea260d
All checks were successful
continuous-integration/drone/push Build is passing
CHORE REFACTOR upgrading plugin to handle a unique monopackage bundler
2025-11-20 11:06:56 +01:00

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...";
}
}
}
}