Files
web/packages/design-system/lib/components/Map/InfoWindow/infoWindow.module.css
Erik Tiekstra 4de24e9f2a feat(BOOK-391): Added theme and logos for Bassin Seven
* chore: Updated border-radius variables after import change

Approved-by: Linus Flood
2026-01-22 07:03:25 +00:00

34 lines
692 B
CSS

.infoWindow {
position: relative;
display: grid;
padding: 4px 4px 12px 4px;
margin-bottom: -4px;
}
.content {
background-color: var(--Base-Surface-Primary-light-Normal);
border-radius: var(--Corner-Radius-md);
box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
}
.arrow {
position: relative;
height: 12px;
width: 25px;
filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.1));
justify-self: center;
&::after {
content: "";
background-color: var(--Base-Surface-Primary-light-Normal);
clip-path: polygon(0 0, 50% 100%, 100% 0);
height: 12px;
left: 0;
position: absolute;
top: -1px;
width: 25px;
}
}