a working product with ugly ui

This commit is contained in:
2025-12-12 20:15:27 +05:00
parent e6d04f986f
commit 4d3085623a
77 changed files with 8750 additions and 0 deletions

56
public/src/index.css Normal file
View File

@@ -0,0 +1,56 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Leaflet CSS will be imported in main.tsx */
/* Custom Leaflet marker styles */
.custom-marker {
background: transparent !important;
border: none !important;
display: flex;
align-items: center;
justify-content: center;
}
.custom-marker div {
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
/* Device marker icons */
.custom-device-marker {
background: transparent !important;
border: none !important;
}
.device-icon {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: white;
border-radius: 50%;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
border: 3px solid;
}
.device-icon svg {
width: 24px;
height: 24px;
}
.switch-icon {
border-color: #8B5CF6;
color: #8B5CF6;
}
.ap-indoor-icon {
border-color: #10B981;
color: #10B981;
}
.ap-outdoor-icon {
border-color: #F59E0B;
color: #F59E0B;
}