jurassic-park-interface/sass/components/_layout.scss
2020-06-07 20:47:17 +01:00

28 lines
411 B
SCSS

#grid-container {
display: grid;
grid-template-rows: auto auto;
grid-template-columns: 485px 365px;
justify-items: stretch;
}
#outer-container {
width: fit-content;
}
#system-icons {
grid-area: 4 / 2 / 5 / 3;
}
#console-display {
grid-area: 4 / 1 / 5 / 2;
}
#control-panel {
display: flex;
flex-direction: column;
grid-area: 1 / 2 / 2 / 3;
}
#map-display {
grid-area: 1 / 1 / 3 / 2;
}