Move mock status to replace live status

This commit is contained in:
Eli Ribble 2026-02-03 17:54:21 +00:00
parent 8d96055ba1
commit eb3d09c989
No known key found for this signature in database
5 changed files with 127 additions and 176 deletions

View file

@ -43,3 +43,4 @@ $theme-colors: map-merge(
@import "./sidebar.scss";
@import "./rmo/nuisance.scss";
@import "./rmo/root.scss";
@import "./rmo/status.scss";

30
scss/status.scss Normal file
View file

@ -0,0 +1,30 @@
.map-container {
background-color: #e9ecef;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
height: 500px;
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
}
#map {
height: 500px;
width:100%;
margin-bottom: 10px;
}
#map img {
max-width: none;
min-width: 0px;
height: auto;
}
.search-box {
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
border-radius: 8px;
}
@media (max-width: 768px) {
.map-container {
height: 300px;
}
}