42 lines
599 B
SCSS
Raw Normal View History

2020-06-01 15:33:53 +01:00
#grid-container {
display: grid;
2020-06-07 20:47:17 +01:00
grid-template-rows: auto auto;
grid-template-columns: auto auto;
2020-06-01 15:33:53 +01:00
justify-items: stretch;
height: 100%;
2020-06-01 15:33:53 +01:00
}
#outer-container__outer {
2020-06-09 11:08:47 +01:00
max-width: 90%;
height: 100%;
}
#outer-container__inner {
height: 100%;
2020-06-07 20:47:17 +01:00
}
2020-06-01 15:33:53 +01:00
#console-display {
grid-area: 4 / 1 / 5 / 2;
}
#control-panel {
grid-area: 1 / 2 / 4 / 3;
2020-06-01 15:33:53 +01:00
}
2020-06-08 12:51:45 +01:00
#map-display__outer {
grid-area: 1 / 1 / 4 / 2;
2020-06-08 12:51:45 +01:00
display: flex;
flex-direction: column;
}
#map-display__inner {
display: flex;
flex-direction: column;
flex: 1;
}
#control-panel__inner {
display: flex;
flex-direction: column;
}