Files
nodeMap/styles/global.css
2024-08-10 10:32:37 +02:00

32 lines
642 B
CSS

/* styles/global.css */
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "leaflet/dist/leaflet.css";
.tooltip-tailwind .leaflet-tooltip {
@apply bg-white text-black p-2 border border-gray-300 rounded shadow !important;
}
.leaflet-popup-content {
min-width: 250px; /* Adjust the width based on your requirements */
}
/* src/global.css */
.custom-marker-icon {
background-color: red !important;
padding: 10px !important;
color: white !important;
}
/* GMA Farben */
.text-blue-700 {
color: #1d4ed8;
}
.text-red-700 {
color: #dc2626;
}
.text-yellow-500 {
color: #f59e0b;
}
.text-green-700 {
color: #10b981;
}