feat(SW-2511): hotel page map and marker improvements * feat(SW-2511): update hotel page map * fix(SW-2511): fix issue with identical id's for POIs Approved-by: Anton Gunnarsson
47 lines
921 B
CSS
47 lines
921 B
CSS
.advancedMarker {
|
|
height: var(--Space-x4);
|
|
width: var(
|
|
--Space-x4
|
|
) !important; /* Overwriting the default width of the @vis.gl/react-google-maps AdvancedMarker */
|
|
}
|
|
|
|
.advancedMarker.active {
|
|
height: var(--Space-x5);
|
|
width: var(
|
|
--Space-x5
|
|
) !important; /* Overwriting the default width of the @vis.gl/react-google-maps AdvancedMarker */
|
|
}
|
|
|
|
.poi {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: var(--Space-x05);
|
|
border-radius: var(--Corner-radius-rounded);
|
|
background-color: var(--Surface-UI-Fill-Default);
|
|
box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.poi.active {
|
|
padding-right: var(--Space-x15);
|
|
}
|
|
|
|
.poiLabel {
|
|
display: none;
|
|
}
|
|
|
|
.poi.active .poiLabel {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Space-x2);
|
|
text-wrap: nowrap;
|
|
}
|
|
|
|
.distance {
|
|
color: var(--Text-Secondary);
|
|
}
|