Skip to content
Snippets Groups Projects
MapComponent.css 528 B
.svg-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.hovered {
  stroke: red !important;
  fill: yellow !important;
}

.enlarged {
  transform: scale(1.2) !important;
  transition: transform 0.2s;
  transform-origin: center;
}

.popup {
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 15px;
  cursor: pointer;
}

.popup-content {
  text-align: center;
}