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

28 lines
411 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
}
#map-display {
grid-area: 1 / 1 / 3 / 2;
}