a working product with ugly ui
This commit is contained in:
56
public/src/index.css
Normal file
56
public/src/index.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user