main.scss 444 B

12345678910111213141516171819202122232425
  1. #node-editor-graph-root {
  2. display: grid;
  3. grid-template-rows: 100%;
  4. grid-template-columns: 200px calc(100% - 500px) 300px;
  5. height: 100%;
  6. width: 100%;
  7. background: #464646;
  8. font: 14px "acumin-pro";
  9. }
  10. #nodeList {
  11. grid-row: 1;
  12. grid-column: 1;
  13. }
  14. .diagram-container {
  15. grid-row: 1;
  16. grid-column: 2;
  17. background: #222222;
  18. }
  19. #propertyTab {
  20. grid-row: 1;
  21. grid-column: 3;
  22. }