feat(343): Style fixes on map

This commit is contained in:
Pontus Dreij
2024-11-01 09:39:34 +01:00
parent efad3381b6
commit 3a5ec28dc1
9 changed files with 94 additions and 66 deletions

View File

@@ -1,15 +1,21 @@
.dynamicMap {
position: fixed;
top: calc(
var(--main-menu-mobile-height) + var(--booking-widget-mobile-height) - 4px
);
right: 0;
bottom: 0;
--hotel-map-height: 100dvh;
--hotel-map-top: 0px;
position: absolute;
top: var(--hotel-map-top);
left: 0;
z-index: var(--dialog-z-index);
height: var(--hotel-map-height);
width: 100dvw;
z-index: var(--hotel-dynamic-map-z-index);
display: flex;
flex-direction: column;
background-color: var(--Base-Surface-Primary-light-Normal);
}
.wrapper {
position: absolute;
top: 0;
left: 0;
}
@media screen and (min-width: 768px) {
.dynamicMap {