Add position:relative to .p5-sketch

Sketch elements need relative positioning so elements they create can be
positioned inside them correctly.
This commit is contained in:
Eryn Wells 2022-04-09 09:14:45 -07:00
parent 20401a9ddf
commit 9663f063ff

View file

@ -198,6 +198,7 @@ p {
.p5-sketch { .p5-sketch {
display: block; display: block;
position: relative;
width: 100%; width: 100%;
} }