Move mock status to replace live status
This commit is contained in:
parent
8d96055ba1
commit
eb3d09c989
5 changed files with 127 additions and 176 deletions
|
|
@ -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
30
scss/status.scss
Normal 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;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue