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

37 lines
541 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: 485px 365px;
2020-06-01 14:33:53 +00:00
justify-items: stretch;
}
2020-06-07 19:47:17 +00:00
#outer-container {
width: fit-content;
}
2020-06-01 14:33:53 +00:00
#system-icons {
grid-area: 4 / 2 / 5 / 3;
}
#console-display {
grid-area: 4 / 1 / 5 / 2;
}
#control-panel {
display: flex;
flex-direction: column;
2020-06-07 19:47:17 +00:00
grid-area: 1 / 2 / 2 / 3;
2020-06-01 14:33:53 +00:00
}
2020-06-08 11:51:45 +00:00
#map-display__outer {
2020-06-01 14:33:53 +00:00
grid-area: 1 / 1 / 3 / 2;
2020-06-08 11:51:45 +00:00
display: flex;
flex-direction: column;
}
#map-display__inner {
display: flex;
flex-direction: column;
flex: 1;
}