39 lines
673 B
CSS
39 lines
673 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background-color: #f8fafc;
|
|
}
|
|
|
|
.leaflet-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 1;
|
|
background: #ebe7e3;
|
|
}
|
|
|
|
.custom-marker {
|
|
background: none;
|
|
border: none;
|
|
}
|
|
|
|
.custom-scrollbar::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-thumb {
|
|
background: #e2e8f0;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
|
background: #cbd5e1;
|
|
}
|