plottery_editor 0.7.0

Graphical Editor of Plottery, a creative coding framework for generative vector graphics and pen plotting.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.ProjectCreate {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  grid-auto-rows: auto;
  align-items: center;
  column-gap: var(--gap-1);
  row-gap: var(--gap-1);

  width: 100%;
  max-width: 1500px;
}

.accept {
  margin-top: var(--gap-2);
}