mirror of
https://github.com/Queer-Lexikon/regenbogenkarte
synced 2024-11-10 14:44:13 +00:00
e98c3de747
This commit includes all data from the current map, excluding: - the actual data - the deployment script to the server We've added a comprehensive README for newcomers, so that they can understand what's going on. Co-authored-by: xenia <xhartmann@posteo.de>
28 lines
517 B
CSS
28 lines
517 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
@apply m-0 p-0 h-screen w-screen font-sans;
|
|
@apply flex flex-col;
|
|
}
|
|
|
|
.menu:not(.open) {
|
|
@apply hidden;
|
|
}
|
|
|
|
.map-popup .leaflet-popup-content-wrapper {
|
|
@apply font-sans;
|
|
@apply px-6 py-4 rounded shadow-xl;
|
|
}
|
|
.map-popup .leaflet-popup-content {
|
|
@apply m-0;
|
|
@apply leading-relaxed;
|
|
@apply text-sm;
|
|
}
|
|
.map-popup .leaflet-container a.leaflet-popup-close-button {
|
|
@apply w-6 h-6 text-xl;
|
|
}
|
|
.map-popup .leaflet-popup-content p {
|
|
@apply m-0 mb-1;
|
|
}
|