Move status scss to correct directory

This commit is contained in:
Eli Ribble 2026-02-03 23:13:19 +00:00
parent 765e437d6c
commit 7032f8e26b
No known key found for this signature in database

30
scss/rmo/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;
}
}