mirror of
https://github.com/Max-Stevenson/jurassic-park-interface.git
synced 2024-11-03 01:09:33 +00:00
23 lines
347 B
SCSS
23 lines
347 B
SCSS
|
#grid-container {
|
||
|
display: grid;
|
||
|
grid-template-rows: auto auto auto auto;
|
||
|
grid-template-columns: auto auto;
|
||
|
justify-items: stretch;
|
||
|
}
|
||
|
|
||
|
#system-icons {
|
||
|
grid-area: 4 / 2 / 5 / 3;
|
||
|
}
|
||
|
|
||
|
#console-display {
|
||
|
grid-area: 4 / 1 / 5 / 2;
|
||
|
}
|
||
|
|
||
|
#control-panel {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
#map-display {
|
||
|
grid-area: 1 / 1 / 3 / 2;
|
||
|
}
|