first commit

This commit is contained in:
Mathieu Bruyen
2022-05-02 15:12:06 +02:00
commit 4ddc04d017
23 changed files with 3849 additions and 0 deletions

33
src/App.css Normal file
View File

@@ -0,0 +1,33 @@
.App {
max-width: 80em;
margin: 0 auto;
display: grid;
grid-template-rows: auto auto;
grid-template-columns: 1fr 2fr;
}
.App-general {
grid-area: 1 / 1 / 2 / 3;
}
.App-editor {
grid-area: 2 / 1;
}
.App-renderer {
grid-area: 2 / 2 / 3 / 3;
box-shadow: 2px 2px 5px red;
position: relative;
}
.App-renderer > svg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.App-overlay {
width: 100%;
height: 100%;
}