ui: Move map-specific css from App.css to Map.scss

This commit is contained in:
Mike Salvatore 2021-01-20 15:35:17 -05:00
parent 5d5091d914
commit e9b50efc68
2 changed files with 39 additions and 39 deletions

View File

@ -301,45 +301,6 @@ body {
background: #d30d09; background: #d30d09;
} }
.telemetry-console {
z-index: 2;
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 130px;
background: rgba(0, 0, 0, 0.7);
border-radius: 5px;
border: 3px solid #aaa;
padding: 0.5em;
color: white;
font-family: Consolas, "Courier New", monospace;
overflow: auto;
}
.telemetry-console .date {
color: #ccc;
}
.telemetry-console .source {
font-weight: bold;
}
.telemetry-lines {
z-index: 3;
position: absolute;
bottom: 103px;
right: 20px;
background: #000000cc;
border-radius: 5px;
padding: 1px;
color: white;
}
.map-legend {
font-size: 18px;
}
/* /*
* Full Logs Page * Full Logs Page
*/ */

View File

@ -1,7 +1,46 @@
.map-legend {
font-size: 18px;
}
.map-window { .map-window {
position: relative; position: relative;
} }
.telemetry-console {
z-index: 2;
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 130px;
background: rgba(0, 0, 0, 0.7);
border-radius: 5px;
border: 3px solid #aaa;
padding: 0.5em;
color: white;
font-family: Consolas, "Courier New", monospace;
overflow: auto;
}
.telemetry-console .date {
color: #ccc;
}
.telemetry-console .source {
font-weight: bold;
}
.telemetry-lines {
z-index: 3;
position: absolute;
bottom: 103px;
right: 20px;
background: #000000cc;
border-radius: 5px;
padding: 1px;
color: white;
}
.net-graph-wrapper { .net-graph-wrapper {
height: calc(100% - 130px); height: calc(100% - 130px);
width: 100%; width: 100%;