23 lines
465 B
CSS
23 lines
465 B
CSS
.dynamicMap {
|
|
--hotel-map-height: 100dvh;
|
|
--hotel-map-top: 145px;
|
|
--hotel-dynamic-map-z-index: 2;
|
|
position: fixed;
|
|
top: var(--hotel-map-top);
|
|
left: 0;
|
|
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;
|
|
height: 100vh;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|