navi/src/index.css

51 lines
993 B
CSS
Raw Normal View History

@import "tailwindcss";
html, body, #root {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
/* MapLibre popup styling to match dark theme */
.maplibregl-popup-content {
background: #1f2937 !important;
border: 1px solid #374151 !important;
border-radius: 8px !important;
padding: 8px 12px !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
}
.maplibregl-popup-tip {
border-top-color: #1f2937 !important;
border-bottom-color: #1f2937 !important;
}
.maplibregl-popup-close-button {
color: #9ca3af !important;
font-size: 16px !important;
padding: 2px 6px !important;
}
.maplibregl-popup-close-button:hover {
color: #fff !important;
background: transparent !important;
}
/* Custom scrollbar for panels */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #4b5563;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #6b7280;
}