Added Calendar Page

This commit is contained in:
2026-01-21 17:34:48 +01:00
parent 3a8a6d1576
commit c9f6b53c13
14 changed files with 2188 additions and 9 deletions

View File

@@ -2,6 +2,59 @@
@tailwind components;
@tailwind utilities;
@import 'leaflet/dist/leaflet.css';
/* Styles personnalisés pour Leaflet */
.leaflet-container {
font-family: inherit;
}
.leaflet-popup-content-wrapper {
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.leaflet-popup-tip {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.leaflet-control-zoom {
border: none !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
border-radius: 8px !important;
overflow: hidden;
}
.leaflet-control-zoom a {
background-color: white !important;
color: #374151 !important;
border: none !important;
width: 36px !important;
height: 36px !important;
line-height: 36px !important;
font-size: 18px !important;
transition: all 0.2s !important;
}
.leaflet-control-zoom a:hover {
background-color: #f3f4f6 !important;
color: #6B46C1 !important;
}
.leaflet-control-zoom-in {
border-bottom: 1px solid #e5e7eb !important;
}
.custom-marker-depart,
.custom-marker-arrivee {
background: transparent !important;
border: none !important;
}
.custom-popup .leaflet-popup-content {
margin: 0 !important;
}
:root {
--background: #ffffff;
--foreground: #171717;