jurassic-park-interface/sass/components/_layout.scss

42 lines
599 B
SCSS
Raw Normal View History

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